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"; }