blob: e583df039f38ad4ef6bb2bcbfa6df196c2117f52 [file] [log] [blame]
Nico Weber04e213b2013-04-03 17:36:11 +00001// RUN: %clang_cc1 -verify -fsyntax-only -Wno-objc-root-class %s
2
Erik Pilkingtonc5a05832019-04-11 17:55:30 +00003// 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}}
Nico Weber04e213b2013-04-03 17:36:11 +00006
7__attribute__((deprecated)) @interface A @end
8__attribute__((deprecated)) @protocol P0;
9__attribute__((deprecated)) @protocol P1
10@end
11
12#define EXP __attribute__((visibility("default")))
13class EXP C {};
14EXP class C2 {}; // expected-warning {{attribute 'visibility' is ignored, place it after "class" to apply attribute to type declaration}}
15
Nico Weber69a79142013-04-04 00:15:10 +000016@interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '@interface'}}
Nico Weber04e213b2013-04-03 17:36:11 +000017EXP @interface I2 @end
18
Alp Toker6ed72512013-12-14 01:07:05 +000019@implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C directives{{$}}}}
Erik Pilkingtonc5a05832019-04-11 17:55:30 +000020EXP @implementation I2 @end
Nico Weber04e213b2013-04-03 17:36:11 +000021
Alp Toker6ed72512013-12-14 01:07:05 +000022@class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{{$}}}}
Erik Pilkingtonc5a05832019-04-11 17:55:30 +000023EXP @class OC2; // expected-error {{prefix attribute must be followed by an interface, protocol, or implementation}}
Nico Weber04e213b2013-04-03 17:36:11 +000024
Nico Weber69a79142013-04-04 00:15:10 +000025@protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '@protocol'}}
Nico Weber04e213b2013-04-03 17:36:11 +000026EXP @protocol P2 @end