rt_gccstream/gcc/testsuite/g++.dg/parse/defarg3.C

6 lines
87 B
C

struct A {
enum { value = 10 };
A() { f(); }
static int f(int i=value);
};