зеркало из https://github.com/microsoft/clang.git
25 строки
309 B
Objective-C
25 строки
309 B
Objective-C
// RUN: clang-cc -fsyntax-only -verify %s
|
|
|
|
@interface SSyncCEList
|
|
{
|
|
id _list;
|
|
}
|
|
@end
|
|
|
|
@implementation SSyncCEList
|
|
|
|
- (id) list { return 0; }
|
|
@end
|
|
|
|
@interface SSyncConflictList : SSyncCEList
|
|
@end
|
|
|
|
@implementation SSyncConflictList
|
|
|
|
- (id)Meth : (SSyncConflictList*)other
|
|
{
|
|
return other.list;
|
|
}
|
|
@end
|
|
|