brintos

brintos / llvm-project-archived public Read only

0
0
Text · 507 B · ce16596 Raw
16 lines · plain
1// RUN: cp %s %t.cpp2// RUN: not clangd -enable-config=0 -check=%t.cpp 2>&1 | FileCheck -strict-whitespace %s3 4// CHECK: Testing on source file {{.*}}check-fail.test5// CHECK: internal (cc1) args are: -cc16// CHECK: Building preamble...7// CHECK: [pp_file_not_found] Line {{.*}}: 'missing.h' file not found8// CHECK: Building AST...9// CHECK: Testing features at each token10// CHECK: tweak: ExpandDeducedType ==> FAIL11// CHECK: All checks completed, 2 errors12 13#include "missing.h"14void fun();15auto x = fun;16