http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
[official-gcc.git] / 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 };