initialization-bug-extra.cc revision 2d1fdb26e458c4ddc04155c1d421bced3ba90cd0
1// This file simply declares a dynamically initialized var by the name of 'y'.
2int initY() {
3  return 5;
4}
5int y = initY();
6