Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / temporary6.C
blobdc660e8fcf46dece39bd528891682af96b96b653
1 // { dg-do assemble  }
2 // Bug: the temporary from the default parameter to f2 is reused.
4 struct A {};
5 int f2 (int i, const A& ar = A());
6 void f (int i, int j = f2(1));
7 void g () { f (1); }
8 void h () { f (1); }