blob: e599e9da016a59c133a47751fd72b0dd0501220c [file] [log] [blame]
// RUN: clang %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