[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / class-stub-attr.m
blob97a81038b6c8b65c260f11553ab4804223169c40
1 // RUN: %clang -target x86_64-apple-darwin -fsyntax-only -Xclang -verify %s
2 // RUN: %clang -target x86_64-apple-darwin -x objective-c++ -fsyntax-only -Xclang -verify %s
4 @interface NSObject
5 @end
7 __attribute__((objc_class_stub))
8 @interface MissingSubclassingRestrictedAttribute : NSObject // expected-error {{'objc_class_stub' attribute cannot be specified on a class that does not have the 'objc_subclassing_restricted' attribute}}
9 @end
11 __attribute__((objc_class_stub))
12 __attribute__((objc_subclassing_restricted))
13 @interface ValidClassStubAttribute : NSObject
14 @end
16 @implementation ValidClassStubAttribute // expected-error {{cannot declare implementation of a class declared with the 'objc_class_stub' attribute}}
17 @end
19 @implementation ValidClassStubAttribute (MyCategory)
20 @end
22 __attribute__((objc_class_stub(123))) // expected-error {{'objc_class_stub' attribute takes no arguments}}
23 @interface InvalidClassStubAttribute : NSObject
24 @end
26 __attribute__((objc_class_stub)) // expected-error {{'objc_class_stub' attribute only applies to Objective-C interfaces}}
27 int cannotHaveObjCClassStubAttribute(void) {}