[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Parser / attributes.mm
blobe583df039f38ad4ef6bb2bcbfa6df196c2117f52
1 // RUN: %clang_cc1 -verify -fsyntax-only -Wno-objc-root-class %s
3 // FIXME: Why isn't this supported? Seems useful for availability attributes at
4 // the very least.
5 __attribute__((deprecated)) @class B; // expected-error {{prefix attribute must be followed by an interface, protocol, or implementation}}
7 __attribute__((deprecated)) @interface A @end
8 __attribute__((deprecated)) @protocol P0;
9 __attribute__((deprecated)) @protocol P1
10 @end
12 #define EXP __attribute__((visibility("default")))
13 class EXP C {};
14 EXP class C2 {}; // expected-warning {{attribute 'visibility' is ignored, place it after "class" to apply attribute to type declaration}}
16 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '@interface'}}
17 EXP @interface I2 @end
19 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C directives{{$}}}}
20 EXP @implementation I2 @end
22 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{{$}}}}
23 EXP @class OC2; // expected-error {{prefix attribute must be followed by an interface, protocol, or implementation}}
25 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '@protocol'}}
26 EXP @protocol P2 @end