Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
db678c6b0c3bdf5b9ba56bb21960cfa2d54c4f87
/
.
/
test
/
Parser
/
cxx-condition.cpp
blob: 8fbca2a90f7833294c0b2a2ca858c75154d01462 [
file
] [
log
] [
blame
]
// RUN: clang-cc -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
;
)
;
}