solidity/test/libsolidity/smtCheckerTests/unchecked/unchecked_double_with_modifier.sol
2023-05-11 10:56:55 -05:00

17 lines
175 B
Solidity

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