blob: 5ee7bbfdfa7874167759ea1c36cb3329b1f824a4 [file] [log] [blame]
/* APPLE LOCAL file C* language */
/* Test use of @optional/@required keywords in @protocol class. */
/* { dg-do compile } */
@protocol MyProto1
@optional
- (void) FOO;
@optional
- (void) FOO;
@optional
- (void) REQ;
@optional
@end
@interface MyProto2 <MyProto1>
@required /* { dg-error "directive may only be specified in protocols only" } */
- (void) FOO2;
@optional /* { dg-error "directive may only be specified in protocols only" } */
- (void) FOO3;
@end
@implementation MyProto2
- (void) FOO2{}
- (void) FOO3{}
@end