blob: c281c21000d02133f9e413d945086a66640c979d [file] [log] [blame]
Patrick Beardb2f68202012-04-06 18:12:22 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %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