repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
SemaObjC
/
property-method-lookup-impl.m
blob
0a018b0dffd849a0c689c7227b1695834f52b17f
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
@interface SSyncCEList
4
{
5
id _list;
6
}
7
@end
8
9
@implementation SSyncCEList
10
11
- (id) list { return 0; }
12
@end
13
14
@interface SSyncConflictList : SSyncCEList
15
@end
16
17
@implementation SSyncConflictList
18
19
- (id)Meth : (SSyncConflictList*)other
20
{
21
return other.list;
22
}
23
@end
24