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
/
SemaObjC
/
direct-synthesized-ivar-access.m
blob
7ec333723b66c6fc1c8b321d172cba3bd7a48bab
1
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2
// expected-no-diagnostics
3
// rdar://8673791
4
// rdar://9943851
5
6
@interface I {
7
}
8
9
@property int IVAR;
10
- (int) OK;
11
@end
12
13
@implementation I
14
- (int) Meth { return _IVAR; }
15
- (int) OK { return self.IVAR; }
16
@end