mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix control-flow handling of modifiers without body.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
abstract contract A {
|
||||
function f() public view mod {
|
||||
require(block.timestamp > 10);
|
||||
}
|
||||
modifier mod() virtual { }
|
||||
}
|
||||
// ----
|
||||
// SyntaxError 2883: (129-132): Modifier body does not contain '_'.
|
||||
Reference in New Issue
Block a user