C++: accept field flow test changes after merge

This commit is contained in:
Robert Marsh
2020-06-05 15:41:10 -07:00
parent 0d2f8f3825
commit 53a87fa378
8 changed files with 287 additions and 13 deletions

View File

@@ -53,8 +53,8 @@ public:
{
B *b = new B();
b->set(new C1());
sink(b->get()); // $ast $f-:ir
sink((new B(new C()))->get()); // $ast $f-:ir
sink(b->get()); // $ast $ir=55:12
sink((new B(new C()))->get()); // $ast $ir
}
void f3()