mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-12 00:06:45 +00:00
18 lines
237 B
C++
18 lines
237 B
C++
/*
|
|
Jump crosses initialization of ...
|
|
http://stackoverflow.com/questions/5685471/error-jump-to-case-label
|
|
|
|
Same with switch cases.
|
|
*/
|
|
|
|
#include "common.hpp"
|
|
|
|
int main() {
|
|
goto after
|
|
;
|
|
// ERROR
|
|
//int i = 0;
|
|
after:
|
|
;
|
|
}
|