Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / defarg3.C
blob5c81c69e6793fc5278ec589b601a512e85011af2
1 struct A {
2     enum { value = 10 };
3     A() { f(); }
4     static int f(int i=value);
5 };