]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaObjC/property-method-lookup-impl.m
Import Clang, at r72732.
[FreeBSD/FreeBSD.git] / test / SemaObjC / property-method-lookup-impl.m
1 // RUN: clang-cc  -fsyntax-only -verify %s
2
3 @interface SSyncCEList
4 {
5         id _list;
6 }
7 @end
8
9 @implementation SSyncCEList
10
11 - (id) list
12 {
13 }
14 @end
15
16 @interface SSyncConflictList : SSyncCEList
17 @end
18
19 @implementation SSyncConflictList
20
21 - (id)Meth : (SSyncConflictList*)other
22   {
23     return other.list;
24   }
25 @end
26