aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/empty-union-init.c
blob: 82ff84d0deb2179fc773a3b5b27be1c5342ff7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: clang -emit-llvm < %s -o -
// PR2419

struct Mem {
        union {
        } u;
};

struct Mem *columnMem(){
        static const struct Mem nullMem = { {} };
}