solidity/test/libsolidity/syntaxTests/unchecked/unchecked_while_body.sol
2022-04-01 23:41:18 -05:00

10 lines
205 B
Solidity

contract C {
function f() public pure {
while (true) unchecked {
}
}
}
// ----
// ParserError 5296: (65-74='unchecked'): "unchecked" blocks can only be used inside regular blocks.