Test case for parsing-recovery change to @synthesized

llvm-svn: 89260
This commit is contained in:
Douglas Gregor 2009-11-18 22:37:38 +00:00
parent 5d6498827b
commit 11f3050141
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
// RUN: clang-cc -fsyntax-only -verify %s
@interface I1
{
int value;
int value2;
}
@property int value;
@property int value2;
@end
@implementation I1
@synthesize value, - value2; // expected-error{{expected a property name}}
@synthesize value2;
@end