blob: d3462465809d5697630fe1496693011fb8ca2c13 [file] [log] [blame]
David Blaikie4478ac32013-08-20 22:01:44 +00001// RUN: not %clang_cc1 -g -emit-llvm %s
2
3// Don't attempt to codegen invalid code that would lead to a crash
4
5// PR16933
6struct A;
7A *x;
8struct A {
9 B y;
10};
11A y;