mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 07:26:07 +00:00
20 lines
535 B
Mathematica
20 lines
535 B
Mathematica
![]() |
// RUN: rm -rf %t
|
||
|
// RUN: mkdir %t
|
||
|
// 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
|
||
|
// RUN: FileCheck %s < %t/out
|
||
|
|
||
|
// Ensure that XML we generate is not invalid.
|
||
|
// RUN: FileCheck %s -check-prefix=WRONG < %t/out
|
||
|
// WRONG-NOT: CommentXMLInvalid
|
||
|
|
||
|
@protocol NSObject
|
||
|
@end
|
||
|
|
||
|
@interface NSObject
|
||
|
@end
|
||
|
|
||
|
// CHECK: <Declaration>@interface A <T : id, U : NSObject *> : NSObject
|
||
|
/// A
|
||
|
@interface A<T : id, U : NSObject *> : NSObject
|
||
|
@end
|