C++: Use new syntax in field-flow tests

This commit is contained in:
Mathias Vorreiter Pedersen
2020-10-29 08:48:37 +01:00
parent 176522d011
commit 4be02a9463
14 changed files with 92 additions and 92 deletions

View File

@@ -39,8 +39,8 @@ void sink(int x)
void bar(Outer &b)
{
sink(b.inner.f.a()); // $ast=53:19 $ast=55:19 $ir=53:19 $ir=55:19
sink(b.inner.f.b()); // $ast=54:19 $ast=56:19 $ir=54:19 $ir=56:19
sink(b.inner.f.a()); // $ ast=53:19 ast=55:19 ir=53:19 ir=55:19
sink(b.inner.f.b()); // $ ast=54:19 ast=56:19 ir=54:19 ir=56:19
}
void foo()