blob: 23a4b5cb537088c0bf924aaab852a92f724ecf3a (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
struct _MyS {
int foo;
} MyS;
struct _MyS ww;
// RUN: c-index-test -cursor-at=%s:1:9 \
// RUN: -cursor-at=%s:2:9 \
// RUN: -cursor-at=%s:5:9 \
// RUN: %s | FileCheck %s
// CHECK: StructDecl=_MyS:1:8 (Definition)
// CHECK: FieldDecl=foo:2:7 (Definition)
// CHECK: TypeRef=struct _MyS:1:8
|