language: C++ 4.7.2 (gcc-4.7.2)
date: 650 days 7 hours ago
link:
visibility: private
1
2
3
4
5
6
int main() {
   goto lol;
   int x = 0;
lol:
   return 0;
}
prog.cpp: In function ‘int main()’:
prog.cpp:4: error: jump to label ‘lol’
prog.cpp:2: error:   from here
prog.cpp:3: error:   crosses initialization of ‘int x’
prog.cpp:3: warning: unused variable ‘x’