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