xref: /llvm-project/compiler-rt/test/asan/TestCases/Helpers/initialization-bug-extra.cpp (revision 673dc3d4a0b0fbb3b9b34ae2ecbfa522627fe582)
1 // This file simply declares a dynamically initialized var by the name of 'y'.
initY()2 int initY() {
3   return 5;
4 }
5 int y = initY();
6