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] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
FixIt
/
fixit-add-synthesize-to-property.m
blob
19b2f4b73f0134dcaae9990e54c26073c1f5d8a1
1
// RUN: %clang_cc1 -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
2
3
@protocol P1
4
5
@property int prop;
6
7
@end
8
9
@interface I <P1>
10
11
@end
12
13
@implementation I
14
@end // CHECK: fix-it:{{.*}}:{[[@LINE]]:1-[[@LINE]]:1}:"@synthesize prop;\n\n"