brintos

brintos / llvm-project-archived public Read only

0
0
Text · 521 B · 60a542f Raw
19 lines · plain
1// RUN: cp %s %t.cpp2// RUN: clangd -enable-config=0 -log=verbose -check=%t.cpp 2>&1 | FileCheck -strict-whitespace %s3 4// CHECK: Testing on source file5// CHECK: internal (cc1) args are: -cc16// CHECK: Building preamble...7// CHECK: Built preamble8// CHECK: Building AST...9// CHECK: Testing features at each token10// CHECK-DAG: tweak: ExpandDeducedType11// CHECK-DAG: hover: true12// CHECK-DAG: tweak: AddUsing13// CHECK: All checks completed, 0 errors14 15namespace ns {16struct Foo {};17} // namespace ns18auto f = ns::Foo();19