freebsd-dev/test/CodeGenObjC/debug-info-linkagename.m

18 lines
187 B
Mathematica
Raw Normal View History

2009-12-15 18:49:47 +00:00
// RUN: clang -cc1 -g -S -o %t %s
2009-10-14 18:03:49 +00:00
// 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];
}