blob: b168976da136798eb9cdef238f002752d0517703 [file] [log] [blame]
// RUN: clang-cc %s -fsyntax-only -verify
@interface Test {
int x;
}
-(void) setX: (int) d;
@end
extern struct foo x;
@implementation Test
-(void) setX: (int) n {
x = n;
}
@end