2020-11-03 14:49:28 +00:00
|
|
|
contract C {
|
|
|
|
modifier m() {
|
|
|
|
_;
|
|
|
|
}
|
|
|
|
|
|
|
|
modifier n() {
|
|
|
|
string memory _ = "";
|
|
|
|
_;
|
|
|
|
revert(_);
|
|
|
|
}
|
|
|
|
|
|
|
|
function f() m() public {
|
|
|
|
}
|
|
|
|
|
|
|
|
function g() n() public {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-11-13 13:51:38 +00:00
|
|
|
// DeclarationError 3726: (77-92): The name "_" is reserved.
|