Fix control-flow handling of modifiers without body.

This commit is contained in:
chriseth
2021-06-03 13:31:15 +02:00
parent 9be57546db
commit 2e3ee4c156
6 changed files with 17 additions and 6 deletions
@@ -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 '_'.