2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-04-04 05:51:32 +08:00
|
|
|
|
|
|
|
@protocol CYCdef
|
|
|
|
- (int)name;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface JSCdef <CYCdef> {
|
|
|
|
int name;
|
|
|
|
}
|
|
|
|
|
|
|
|
@property (assign) int name;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation JSCdef
|
|
|
|
@synthesize name;
|
|
|
|
@end
|
|
|
|
|