blob: 09feac7971f3c83587a86c886f30cb56b9aac5a3 [file] [log] [blame]
/* It is OK to use #pragma inside @implementation body. This test checks that. */
/* Ziemowit Laski <zlaski@apple.com>. */
// { dg-additional-options "-Wno-objc-root-class" }
@interface A
{
int p;
}
+(int) foo;
-(int) bar;
@end
@implementation A
#pragma mark -
#pragma mark init / dealloc
+ (int)foo {
return 1;
}
#pragma mark -
#pragma mark Private Functions
- (int)bar {
return 2;
}
@end