mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05:00
24 lines
311 B
Objective-C
24 lines
311 B
Objective-C
// 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
|
|
|