solidity/test/libsolidity/syntaxTests/unimplemented_super_function.sol
2020-01-08 16:12:06 +01:00

9 lines
249 B
Solidity

abstract contract a {
function f() virtual public;
}
contract b is a {
function f() public override { super.f(); }
}
// ----
// TypeError: (110-117): Member "f" not found or not visible after argument-dependent lookup in "contract super b".