blob: ed7e9bcd4315546d60ed3c72fedd5d007c76d8f2 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
@interface SSyncCEList
{
id _list;
}
@end
@implementation SSyncCEList
- (id) list
{
}
@end
@interface SSyncConflictList : SSyncCEList
@end
@implementation SSyncConflictList
- (id)Meth : (SSyncConflictList*)other
{
return other.list;
}
@end