2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / init2.C
blob6812292417c03d94da36c8d51a64ab4d045ee1e1
1 // { dg-do run  }
2 // { dg-options "-O3" }
4 typedef int (*fp)();
6 struct S
8   fp f;
9 };
11 static int f()
13   return 0;
16 static const S s = { &f };
18 int main()
20   return (*s.f)();