OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / defarg3.C
1 struct A {
2     enum { value = 10 };
3     A() { f(); }
4     static int f(int i=value);
5 };