Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
cxx-value-init.cpp
blob: 6e4cc0388e928c5c971e7c6fdbcf78575f9e2f8a [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -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
)();
}