1 // RUN: %clang_cc1 -emit-llvm < %s -o - 2 // PR2419 3 4 struct Mem { 5 union { 6 } u; 7 }; 8 columnMem()9 struct Mem *columnMem(){ 10 static const struct Mem nullMem = { {} }; 11 } 12 13 14