solidity/test/libsolidity/smtCheckerTests/unchecked/unchecked_double_with_modifier.sol

19 lines
177 B
Solidity
Raw Normal View History

contract C {
modifier m() {
unchecked{}
_;
}
function t() m internal pure {}
function f() public pure {
unchecked { t(); }
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----