blob: 6ca2bb875b5d40fef6b3b53e382e784d07f6be32 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
@protocol PROTO1
@required
- (int) FooBar;
@optional
- (void) MyMethod1;
+ (int) S;
@end
@interface INTF1
@required // expected-error {{directive may only be specified in protocols only}}
- (int) FooBar;
- (int) FooBar1;
- (int) FooBar2;
@optional // expected-error {{directive may only be specified in protocols only}}
+ (int) C;
- (int)I;
@end