blob: 8c8f33b560580d74246246abe3c27a5754eafebc [file] [log] [blame]
// RUN: clang -cc1 -fsyntax-only -verify %s
@protocol CYCdef
- (int)name;
@end
@interface JSCdef <CYCdef> {
int name;
}
@property (assign) int name;
@end
@implementation JSCdef
@synthesize name;
@end