blob: f85babafbdbde542e23df196cd0fa554cbbb06e5 [file] [log] [blame]
// RUN: clang -cc1 -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