Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
bde0c9d38c93f880f2191c5455aa8719e6adf10c
/
.
/
test
/
Parser
/
cxx-condition.cpp
blob: ccb77671731b861a686c73bf4becfe45f8e28ba5 [
file
] [
log
] [
blame
]
// RUN: clang -parse-noop %s -verify
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
;
)
;
}