Revision 9d2cca71cf54ddfebda26e247d82ae7b71d9e03c authored by Pranav Gokhale on 30 June 2018, 18:56:21 UTC, committed by Pranav Gokhale on 30 June 2018, 18:56:21 UTC
1 parent 720b0db
Raw File
get-cursor.c
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
back to top