Files
clang-p2996/compiler-rt/test/asan/TestCases/Helpers/initialization-bug-extra.cpp
Nico Weber 673dc3d4a0 compiler-rt: Rename cc files below test/asan to cpp
See r367803 and similar other changes.

llvm-svn: 367887
2019-08-05 16:48:12 +00:00

6 lines
124 B
C++

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