aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/while_loop.sol
blob: dbb00a69ce65a32b7b1917b6cc1463c76f1f6a25 (plain) (tree)
1
2
3
4
5
6
7
               


                                                       


       
contract test {
    function fun() public pure {
        uint256 x;
        while (true) { x = 1; break; continue; } x = 9;
    }
}
// ----