1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Added testcase for r59214.

llvm-svn: 59218
This commit is contained in:
Bill Wendling 2008-11-13 04:09:04 +00:00
parent 2876af73db
commit aede28fc3d

View File

@ -0,0 +1,14 @@
// RUN: %llvmgcc -x objective-c -m64 -c %s -o /dev/null
@interface A
@end
@protocol P
@end
@interface B : A <P>
{
}
@end
@implementation B
- (void)test {
}
@end