blob: 78e7a5fe021c1164bd1239e62e3fc4b39a9dc11e [file] [log] [blame]
Rafael Espindola68045b12011-12-30 03:13:44 +00001// RUN: %clang_cc1 %s -std=c++11 -emit-llvm-only
2// CHECK that we don't crash.
3
4union _XEvent {
5};
6void ProcessEvent() {
7 _XEvent pluginEvent = _XEvent();
8}