ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/objc.dg/break-in-ifstmt.m

16 lines
222 B
Mathematica
Raw Normal View History

2024-04-01 15:19:46 +00:00
/* { 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