blob: 31c0a73fcd064ab62125a604461260e0d43f7dfe [file] [log] [blame]
class Test{};
int main()
{
auto a = Test();
auto b = a;
}
// RUN: c-index-test -test-print-type-declaration -std=c++11 %s | FileCheck %s
// CHECK: VarDecl=a:6:8 (Definition) [typedeclaration=Test] [typekind=Record]
// CHECK: VarDecl=b:7:8 (Definition) [typedeclaration=Test] [typekind=Record]