brintos

brintos / llvm-project-archived public Read only

0
0
Text · 280 B · c281c21 Raw
16 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s2 3@interface I1 4{5  int value;6  int value2;7}8@property int value;9@property int value2;10@end11 12@implementation I113@synthesize value, - value2; // expected-error{{expected a property name}}14@synthesize value2;15@end16