Tests, Changelog and updated grammar

This commit is contained in:
hrkrshnn
2020-04-23 17:27:37 +05:30
parent e2e32d372f
commit 48ff9fd4d6
6 changed files with 74 additions and 1 deletions
@@ -0,0 +1,17 @@
abstract contract A {
function f() public mod returns (bool r) {
return true;
}
modifier mod virtual;
}
contract C is A {
modifier mod override {
if (false) _;
}
}
// ----
// f() -> false