blob: 3f04a8c21d39236ea493a0767d9a0a9d39b2c19c [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor0da2adb2009-11-18 22:37:38 +00002
3@interface I1
4{
5 int value;
6 int value2;
7}
8@property int value;
9@property int value2;
10@end
11
12@implementation I1
13@synthesize value, - value2; // expected-error{{expected a property name}}
14@synthesize value2;
15@end