solidity/test/libsolidity/syntaxTests/unchecked/unchecked_modifier.sol

6 lines
165 B
Solidity
Raw Normal View History

2020-09-30 22:13:03 +00:00
contract C {
modifier m() { unchecked { _; } }
}
// ----
// SyntaxError 2573: (44-45): The placeholder statement "_" cannot be used inside an "unchecked" block.