Removing.

llvm-svn: 50786
This commit is contained in:
Bill Wendling 2008-05-06 23:56:22 +00:00
parent b95635e6ec
commit 8f3d737dcd
1 changed files with 0 additions and 25 deletions

View File

@ -1,25 +0,0 @@
// RUN: %llvmgcc -x objective-c -c %s -o /dev/null -m64
// rdar://5812818
@interface NSObject
@end
@interface Base:NSObject
@property int whatever;
@end
@interface Oops:Base
@end
@implementation Base
@synthesize whatever;
@end
@implementation Oops
-(void)whatthe {
self.whatever=1;
}
@end