1// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %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 25