OSDN Git Service

New failing test
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / static4.C
1 // Origin: Andrew Pollard <andrew@odie.demon.co.uk>
2
3 struct A {
4         A(int);
5 };
6 A::A(int) {}
7 static A _A(0);
8 int main() { return(0); }