summaryrefslogtreecommitdiff
path: root/test/FrontendObjC/2008-11-12-Metadata.m
blob: be8ee41e77ad50d5ceddf5c3b0a7ad837edfbcec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %llvmgcc -x objective-c -m64 -S %s -o /dev/null

@interface A
@end
@protocol P
@end
@interface B : A <P>
{
}
@end
@implementation B
- (void)test {
}
@end