Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f94e215e4a67e5439d56a67bbe470c7860d4b9a6
/
.
/
test
/
CodeGen
/
cxx-value-init.cpp
blob: 50e08dba02db203b3eb29b330fc444cd31450465 [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm %s -o %t
enum
E
{};
int
v1
=
E
();
float
v2
=
float
();
void
f
()
{
int
v3
=
int
();
_Complex
int
v4
=
typeof
(
_Complex
int
)();
_Complex
float
v5
=
typeof
(
_Complex
float
)();
}