Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
llvm-project
/
clang
/
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
)();
}