1/* Yet another stray infinite loop... */ 2/* { dg-do compile } */ 3 4@interface t 5{ 6} 7- (void)go; 8@end 9@implementation t 10- (void)go 11{ 12 } 13} /* { dg-error "stray .\}. between Objective\\-C\\+\\+ methods" } */ 14@end 15 16