mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
177 B
Solidity
19 lines
177 B
Solidity
contract C {
|
|
|
|
modifier m() {
|
|
unchecked{}
|
|
_;
|
|
}
|
|
|
|
function t() m internal pure {}
|
|
|
|
function f() public pure {
|
|
unchecked { t(); }
|
|
}
|
|
}
|
|
|
|
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|