You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
670 B
25 lines
670 B
// 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 <__covariant T : id, U : NSObject *> : NSObject
|
|
/// A
|
|
@interface A<__covariant T : id, U : NSObject *> : NSObject
|
|
@end
|
|
|
|
// CHECK: <Declaration>@interface AA : A <id, NSObject *>
|
|
/// AA
|
|
@interface AA : A<id, NSObject *>
|
|
@end
|