blob: 386aeb260fae5360e9528dfcf57a55556fc8f1d1 [file] [log] [blame] [edit]
// RUN: %clang_cc1 -emit-llvm < %s -o -
// PR2419
struct Mem {
union {
} u;
};
struct Mem *columnMem(void){
static const struct Mem nullMem = { {} };
return 0;
}