]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenObjC/2008-11-12-Metadata.m
Vendor import of clang release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / CodeGenObjC / 2008-11-12-Metadata.m
1 // RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin -fobjc-fragile-abi %s -o /dev/null
2
3 @interface A
4 @end
5 @protocol P
6 @end
7 @interface B : A <P>
8 {
9 }
10 @end
11 @implementation B
12 - (void)test {
13 }
14 @end