Clang Project

clang_source_code/test/CodeGenCXX/invalid.cpp
1// 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;
12