forked from OSchip/llvm-project
9 lines
158 B
C++
9 lines
158 B
C++
|
// RUN: %clang_cc1 %s -std=c++11 -emit-llvm-only
|
||
|
// CHECK that we don't crash.
|
||
|
|
||
|
union _XEvent {
|
||
|
};
|
||
|
void ProcessEvent() {
|
||
|
_XEvent pluginEvent = _XEvent();
|
||
|
}
|