summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-move/Inputs/var_test.h
blob: 1bfd54cf2ff3638540f2ab7884cc7c160a9915dd (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace a {
extern int kGlobalInt;
extern const char *const kGlobalStr;
}

int kEvilInt = 2;

inline void f1() {
  int kGlobalInt = 3;
  const char *const kGlobalStr = "Hello2";
}
OpenPOWER on IntegriCloud