Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
ed8a93d17b8936dc7978cdc37f3f00fc49d24f71
/
.
/
test
/
Parser
/
cxx-condition.cpp
blob: 2a77193f259d29fcddd62c192469137b50dc7792 [
file
] [
log
] [
blame
]
// RUN: clang -parse-noop -verify %s
void
f
()
{
int
a
;
while
(
a
)
;
while
(
int
x
)
;
// expected-error {{expected '=' after declarator}}
while
(
float
x
=
0
)
;
if
(
const
int
x
=
a
)
;
switch
(
int
x
=
a
+
10
)
{}
for
(;
int
x
=
++
a
;
)
;
}