File indexing completed on 2024-05-12 09:44:01

0001 struct Foo
0002 {
0003     void move(int v) { }
0004 };
0005 
0006 Foo getFoo() { return Foo(); }
0007 
0008 void test()
0009 {
0010     getFoo().move(1);
0011 }