solidity/test/libsolidity/smtCheckerTests/unchecked/unchecked_double_with_modifier.sol
2021-04-08 21:03:39 +02:00

19 lines
177 B
Solidity

contract C {
modifier m() {
unchecked{}
_;
}
function t() m internal pure {}
function f() public pure {
unchecked { t(); }
}
}
// ====
// SMTEngine: all
// ----