android_mt6572_jiabo/external/compiler-rt/test/asan/TestCases/Helpers/initialization-bug-extra.cc
2025-09-05 16:56:03 +08: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();