1 struct A {
2     enum { value = 10 };
AA3     A() { f(); }
4     static int f(int i=value);
5 };
6