bolt/deps/llvm-18.1.8/compiler-rt/test/asan/TestCases/Helpers/initialization-bug-extra.cpp
2025-02-14 19:21:04 +01:00

5 lines
124 B
C++

// This file simply declares a dynamically initialized var by the name of 'y'.
int initY() {
return 5;
}
int y = initY();