solidity/test/libsolidity/syntaxTests/unchecked/unchecked_modifier.sol
2020-10-19 16:58:59 +02:00

6 lines
165 B
Solidity

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