solidity/test/libsolidity/syntaxTests/parsing/while_loop.sol
2018-06-20 12:53:38 +02:00

8 lines
140 B
Solidity

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