mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
20 lines
280 B
Solidity
20 lines
280 B
Solidity
contract C {
|
|
modifier m() {
|
|
_;
|
|
}
|
|
|
|
modifier n() {
|
|
string memory _ = "";
|
|
_;
|
|
revert(_);
|
|
}
|
|
|
|
function f() m() public {
|
|
}
|
|
|
|
function g() n() public {
|
|
}
|
|
}
|
|
// ----
|
|
// DeclarationError 3726: (77-92): The name "_" is reserved.
|