repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git]
/
clang-tools-extra
/
test
/
clang-include-fixer
/
exit_on_fatal.cpp
blob
fc8c95a037140e7f2366ab51bbc8d2b023caa257
1
// RUN: sed -e 's#//.*$##' %s > %t.cpp
2
// RUN: not clang-include-fixer -db=fixed -input='foo= "foo.h"' %t.cpp --
3
// RUN: FileCheck %s -input-file=%t.cpp
4
5
// CHECK-NOT: #include
6
// CHECK: #include "doesnotexist.h"
7
// CHECK-NEXT: foo f;
8
9
#include
"doesnotexist.h"
10
foo f
;