aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/static4.C
blob: 70213370b0717d30940aed03dbba610c17dd5d62 (plain)
1
2
3
4
5
6
7
8
9
// Origin: Andrew Pollard <andrew@odie.demon.co.uk>
// Special g++ Options: -O

struct A {
        A(int, int);
};
A::A(int, int) {}
static A _A(0, 0);
int main() { return(0); }