New testcase for rev 75503.

llvm-svn: 75504
This commit is contained in:
Devang Patel 2009-07-13 21:20:20 +00:00
parent 31b3d7b53f
commit 450f266095
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
// RUN: clang-cc -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];
}