1// 'z' is dynamically initialized global from different TU.
2extern int z;
3int __attribute__((noinline)) initY() {
4 return z + 1;
5}
6int y = initY();
7

source code of compiler-rt/test/asan/TestCases/Helpers/initialization-bug-extra2.cpp