OSDN Git Service

In gcc/objc/:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc.dg / break-in-ifstmt.m
1 /* { dg-do compile } */
2
3 @interface foo
4 - (void) test;
5 @end
6
7 @implementation foo
8 -(void) test {
9   if (1) {
10         break;  /* { dg-error "break" } */
11         }
12 }
13 @end
14