blob: b3e94e6bffbda0ec8af812f1edb6e5b8fbd8ec41 [file] [log] [blame]
/* APPLE LOCAL file radar 4550413 */
/* Use of @optional protocol in messaing must be allowed. */
/* { dg-do compile } */
@protocol MyProto1
@optional
- (void) OPT;
@required
- (void) REQ;
@end
@interface MyClass <MyProto1>
@end
@implementation MyClass
- (void) REQ {}
@end
int main()
{
id <MyProto1> p;
[p REQ];
[p OPT];
}