solidity/test/libsolidity/semanticTests/fallback/fallback_override2.sol
2020-11-23 15:00:00 +01:00

19 lines
443 B
Solidity

contract A {
fallback (bytes calldata _input) virtual external returns (bytes memory) {
return _input;
}
}
contract B is A {
fallback () override external {
}
function f() public returns (bool, bytes memory) {
(bool success, bytes memory retval) = address(this).call("abc");
return (success, retval);
}
}
// ====
// EVMVersion: >=byzantium
// compileViaYul: also
// ----
// f() -> 1, 0x40, 0x00