hanchenye-llvm-project/clang/test/SemaObjC/property-method-lookup-impl.m

25 lines
309 B
Mathematica
Raw Normal View History

// RUN: clang-cc -fsyntax-only -verify %s
@interface SSyncCEList
{
id _list;
}
@end
@implementation SSyncCEList
2009-07-22 08:43:08 +08:00
- (id) list { return 0; }
@end
@interface SSyncConflictList : SSyncCEList
@end
@implementation SSyncConflictList
- (id)Meth : (SSyncConflictList*)other
{
return other.list;
}
@end