bolt/deps/llvm-18.1.8/clang-tools-extra/test/clang-move/Inputs/var_test.h

12 lines
182 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
namespace a {
extern int kGlobalInt;
extern const char *const kGlobalStr;
}
int kEvilInt = 2;
inline void f1() {
int kGlobalInt = 3;
const char *const kGlobalStr = "Hello2";
}