solidity/test/libsolidity/semanticTests/fallback/fallback_override2.sol

19 lines
443 B
Solidity
Raw Normal View History

2020-11-18 19:09:39 +00:00
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