android13/external/compiler-rt/test/asan/TestCases/Helpers/initialization-bug-extra.cc

6 lines
124 B
C++
Raw Normal View History

2024-06-22 08:45:49 -04:00
// This file simply declares a dynamically initialized var by the name of 'y'.
int initY() {
return 5;
}
int y = initY();