break-in-ifstmt.m   [plain text]


/* APPLE LOCAL file radar 4219590 */
/* { dg-do compile } */

@interface foo
- (void) test;
@end

@implementation foo
-(void) test {
  if (1) {
        break;	/* { dg-error "break" } */
        }
}
@end