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