Warning, file /sdk/clazy/tests/writing-to-temporary/widen-criteria.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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 }