31fa6a24
8862b309
1
2 3 4
5 6 7
contract test { function fun() public pure { uint256 x; while (true) { x = 1; break; continue; } x = 9; } } // ----