freebsd-dev/test/Parser/statements.c

60 lines
975 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
2009-06-02 17:58:47 +00:00
2009-10-14 18:03:49 +00:00
void test1() {
2009-06-02 17:58:47 +00:00
{ ; { ;;}} ;;
}
2009-10-14 18:03:49 +00:00
void test2() {
2009-06-02 17:58:47 +00:00
if (0) { if (1) {} } else { }
do { } while (0);
while (0) while(0) do ; while(0);
2009-10-14 18:03:49 +00:00
for ((void)0;0;(void)0)
2009-06-02 17:58:47 +00:00
for (;;)
2009-10-14 18:03:49 +00:00
for ((void)9;0;(void)2)
2009-06-02 17:58:47 +00:00
;
2009-10-14 18:03:49 +00:00
for (int X = 0; 0; (void)0);
2009-06-02 17:58:47 +00:00
}
2009-10-14 18:03:49 +00:00
void test3() {
2009-06-02 17:58:47 +00:00
switch (0) {
case 4:
if (0) {
case 6: ;
}
default:
;
}
}
2009-10-14 18:03:49 +00:00
void test4() {
2009-06-02 17:58:47 +00:00
if (0); // expected-warning {{if statement has empty body}}
int X; // declaration in a block.
foo: if (0); // expected-warning {{if statement has empty body}}
}
typedef int t;
void test5() {
if (0); // expected-warning {{if statement has empty body}}
t x = 0;
if (0); // expected-warning {{if statement has empty body}}
}
void test6(void) {
do
. // expected-error {{expected expression}}
while (0);
}
2009-06-14 09:24:02 +00:00
int test7() {
return 4 // expected-error {{expected ';' after return statement}}
}