repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
Parser
/
objc-synthesized-recover.m
blob
c281c21000d02133f9e413d945086a66640c979d
1
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2
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