brintos

brintos / llvm-project-archived public Read only

0
0
Text · 359 B · dc490ed Raw
26 lines · plain
1// RUN: %clang_cc1  -fsyntax-only -verify -Wno-objc-root-class %s2// expected-no-diagnostics3 4@interface SSyncCEList5{6	id _list;7}8@end9 10@implementation SSyncCEList11 12- (id) list { return 0; }13@end14 15@interface SSyncConflictList : SSyncCEList16@end17 18@implementation SSyncConflictList19 20- (id)Meth : (SSyncConflictList*)other21  {22    return other.list;23  }24@end25 26