Fix test to correctly reflect problem

From-SVN: r26695
This commit is contained in:
Mark Mitchell 1999-04-29 13:41:32 +00:00
parent 062e7fd882
commit 8938bb764b
1 changed files with 4 additions and 3 deletions

View File

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