blob: 6b8def9a643aa7d77e379efe7c799bc2ffefb642 [file] [log] [blame]
Eli Friedmanc55f98d2008-06-06 20:12:37 +00001// RUN: clang -emit-llvm < %s -o -
2
3struct Mem {
4 union {
5 } u;
6};
7
8struct Mem *columnMem(){
9 static const struct Mem nullMem = { {} };
10}
11
12