Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Index / comment-objc-parameterized-classes.m
blobfe14dcb3e7c5b1ccce3258f1067544839c4be2c7
1 // RUN: rm -rf %t
2 // RUN: mkdir %t
3 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng -target x86_64-apple-darwin10 %s > %t/out
4 // RUN: FileCheck %s < %t/out
6 // Ensure that XML we generate is not invalid.
7 // RUN: FileCheck %s -check-prefix=WRONG < %t/out
8 // WRONG-NOT: CommentXMLInvalid
10 @protocol NSObject
11 @end
13 @interface NSObject
14 @end
16 // CHECK: <Declaration>@interface A&lt;__covariant T : id, U : NSObject *&gt; : NSObject
17 /// A
18 @interface A<__covariant T : id, U : NSObject *> : NSObject
19 @end
21 // CHECK: <Declaration>@interface AA : A &lt;id, NSObject *&gt;
22 /// AA
23 @interface AA : A<id, NSObject *>
24 @end