blob: 6176832ed1c56e847f047a21b50c5821b911707a [file] [log] [blame]
/* { dg-do compile } */
/* { dg-additional-options "-Wno-objc-root-class" } */
@interface foo
- (void) test;
@end
@implementation foo
-(void) test {
if (1) {
break; /* { dg-error "break" } */
}
}
@end