New failing test

From-SVN: r26693
This commit is contained in:
Mark Mitchell 1999-04-29 09:46:12 +00:00
parent 7f477e818a
commit d8e8b2b997
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// Origin: Andrew Pollard <andrew@odie.demon.co.uk>
struct A {
A(int);
};
A::A(int) {}
static A _A(0);
int main() { return(0); }