Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
639787c8e989d4c5381da01cff156abf888817c2
/
.
/
test
/
Parser
/
objc-synthesized-recover.m
blob: 7de1a57942226725a2b6734acd3c82ac70df932e [
file
] [
log
] [
blame
]
// 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