New testcase producing assertion failure

llvm-svn: 6197
This commit is contained in:
Chris Lattner 2003-05-14 15:44:54 +00:00
parent a48319c483
commit 70694cba0a
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
struct Foo { int X; };
void bar() {}
int main() {
Foo X;
X = ({ bar(); Foo(); });
}