21 lines · cpp
1// RUN: c-index-test -test-annotate-tokens=%s:1:1:16:1 %s -target x86_64-pc-windows-msvc | FileCheck %s2class Foo3{4public:5 void step(int v);6 Foo();7};8 9void bar()10{11 // Introduce a MSInheritanceAttr node on the CXXRecordDecl for Foo. The12 // existance of this attribute should not mark all cursors for tokens in13 // Foo as UnexposedAttr.14 &Foo::step;15}16 17Foo::Foo()18{}19 20// CHECK-NOT: UnexposedAttr=21