diff options
Diffstat (limited to 'test/CodeGenCXX/pr11676.cpp')
-rw-r--r-- | test/CodeGenCXX/pr11676.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGenCXX/pr11676.cpp b/test/CodeGenCXX/pr11676.cpp deleted file mode 100644 index 896751a..0000000 --- a/test/CodeGenCXX/pr11676.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: %clang_cc1 %s -std=c++11 -emit-llvm-only -// CHECK that we don't crash. - -// PR11676's example is ill-formed: -/* -union _XEvent { -}; -void ProcessEvent() { - _XEvent pluginEvent = _XEvent(); -} -*/ - -// Example from PR11665: -void f() { - union U { int field; } u = U(); - (void)U().field; -} |