language: C++ 4.7.2 (gcc-4.7.2)
date: 651 days 11 hours ago
link:
visibility: private
1
2
3
4
5
6
7
8
9
10
#include <string>
 
int main() {
   goto lol;
   {
      std::string x;
lol:
      x = "";
   }
}
prog.cpp: In function ‘int main()’:
prog.cpp:7: error: jump to label ‘lol’
prog.cpp:4: error:   from here
prog.cpp:6: error:   crosses initialization of ‘std::string x’