solidity/test/libsolidity/syntaxTests/unimplemented_super_function.sol
2019-10-30 17:31:33 +01:00

9 lines
229 B
Solidity

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