solidity/test/libsolidity/semanticTests/modifiers/function_modifier_overriding.sol

22 lines
268 B
Solidity
Raw Normal View History

contract A {
function f() public mod returns (bool r) {
return true;
}
modifier mod virtual {
_;
}
}
contract C is A {
modifier mod override {
if (false) _;
}
}
2020-11-30 17:59:49 +00:00
// ====
// compileViaYul: also
// ----
// f() -> false