repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
PCH
/
objcxx-ivar-class.h
blob
5e5565864d8793a48e2bc36a571da6b1c06e7cac
1
struct
S
{
2
S
();
3
S
(
const
S
&);
4
~
S
();
5
S
&
operator
= (
const
S
&);
6
};
7
8
@interface C
{
9
S position
;
10
}
11
@
property
(
assign
,
nonatomic
)
S position
;
12
@end
13
14
@implementation C
15
@synthesize position
;
16
@end