Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
c716c94b77c762aaa320b24b51d238cfdcc6b6c5
/
.
/
test
/
Parser
/
bad-control.c
blob: 914393461a9142d6e61a2b99b2fc907721cff25e [
file
] [
log
] [
blame
]
/* RUN: clang -parse-ast-check %s
*/
int
foo
()
{
break
;
/* expected-error {{'break' statement not in loop or switch statement}} */
}
int
foo2
()
{
continue
;
/* expected-error {{'continue' statement not in loop statement}} */
}