27 lines · plain
1// RUN: %clang_cc1 -verify -fsyntax-only -Wno-objc-root-class %s2 3// FIXME: Why isn't this supported? Seems useful for availability attributes at4// the very least.5__attribute__((deprecated)) @class B; // expected-error {{prefix attribute must be followed by an interface, protocol, or implementation}}6 7__attribute__((deprecated)) @interface A @end8__attribute__((deprecated)) @protocol P0;9__attribute__((deprecated)) @protocol P110@end11 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 16@interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '@interface'}}17EXP @interface I2 @end18 19@implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C directives{{$}}}}20EXP @implementation I2 @end21 22@class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{{$}}}}23EXP @class OC2; // expected-error {{prefix attribute must be followed by an interface, protocol, or implementation}}24 25@protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directives, place them in front of '@protocol'}}26EXP @protocol P2 @end27