[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / test / clang-move / Inputs / var_test.h
blob1bfd54cf2ff3638540f2ab7884cc7c160a9915dd
1 namespace a {
2 extern int kGlobalInt;
3 extern const char *const kGlobalStr;
6 int kEvilInt = 2;
8 inline void f1() {
9 int kGlobalInt = 3;
10 const char *const kGlobalStr = "Hello2";