Sign in
android
/
platform
/
external
/
compiler-rt
/
744682b0200bc2d5427a90504e41cb61be9e32f6
/
.
/
test
/
asan
/
TestCases
/
Helpers
/
initialization-bug-extra.cc
blob: 3c4cb411defad5bd13c4b98a3462d0a3cc9b82b5 [
file
] [
log
] [
blame
]
// This file simply declares a dynamically initialized var by the name of 'y'.
int
initY
()
{
return
5
;
}
int
y
=
initY
();