blob: 2b10e2bd67b82fbad57d73b31abafe9b4d6fb01b [file] [log] [blame]
// RUN: %clang_cc1 -g -S -o %t %s
// RUN: not grep 001 %t
@interface F
-(int) bar;
@end
@implementation F
-(int) bar {
return 42;
}
@end
extern int f(F *fn) {
return [fn bar];
}