Sign in
fuchsia
/
third_party
/
llvm-project
/
refs/heads/upstream/users/joker-eph-python-bindings-maintainers
/
.
/
clang
/
test
/
CodeGen
/
empty-union-init.c
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
;
}