Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
e8e3205b22e388588396ef41fd4bbe437d325a57
/
.
/
test
/
Parser
/
cxx-condition.cpp
blob: 9ffdf79ba0134893fd748febd04ea1f986539b9f [
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
;
)
;
}