2016-02-15 06:38:38 +08:00
|
|
|
// RUN: c-index-test core -print-source-symbols -- %s -target x86_64-apple-macosx10.7 | FileCheck %s
|
2016-02-14 14:39:11 +08:00
|
|
|
|
|
|
|
@interface Base
|
2016-02-15 06:30:14 +08:00
|
|
|
// CHECK: [[@LINE-1]]:12 | objc-class/ObjC | Base | c:objc(cs)Base | _OBJC_CLASS_$_Base | Decl | rel: 0
|
2016-02-14 14:39:11 +08:00
|
|
|
-(void)meth;
|
2016-02-29 15:55:51 +08:00
|
|
|
// CHECK: [[@LINE-1]]:1 | objc-instance-method/ObjC | meth | c:objc(cs)Base(im)meth | -[Base meth] | Decl,Dyn,RelChild | rel: 1
|
2016-02-14 14:39:11 +08:00
|
|
|
// CHECK-NEXT: RelChild | Base | c:objc(cs)Base
|
|
|
|
@end
|