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

6 lines
169 B
Solidity

contract C {
modifier m() { unchecked { _; } }
}
// ----
// SyntaxError 2573: (44-45='_'): The placeholder statement "_" cannot be used inside an "unchecked" block.