blob: 42c23505b1b926d58e597b5ad0e0087962cb371d (
plain)
1
2
3
4
5
6
7
8
|
// RUN: c-index-test core -print-source-symbols -- %s | FileCheck %s
@interface Base
// CHECK: [[@LINE-1]]:12 | objc-class/ObjC | Base | c:objc(cs)Base | Decl | rel: 0
-(void)meth;
// CHECK: [[@LINE-1]]:1 | objc-instance-method/ObjC | meth | c:objc(cs)Base(im)meth | Decl/Dyn/RelChild | rel: 1
// CHECK-NEXT: RelChild | Base | c:objc(cs)Base
@end
|