mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
13 lines
176 B
C
13 lines
176 B
C
// RUN: %clang_cc1 -emit-llvm < %s -o -
|
|
// PR2419
|
|
|
|
struct Mem {
|
|
union {
|
|
} u;
|
|
};
|
|
|
|
struct Mem *columnMem(){
|
|
static const struct Mem nullMem = { {} };
|
|
}
|
|
|
|
|