Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
cxx-condition.cpp
blob: 5aa0c5e294f1a7e724ba45de5668dfd38a0ba96c [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -o %t
void
f
()
{
int
a
;
if
(
int
x
=
a
)
++
a
;
else
a
=
x
;
while
(
int
x
=
a
)
++
a
;
for
(;
int
x
=
a
;
--
a
)
;
switch
(
int
x
=
0
)
{
}
}