solidity/test/libsolidity/syntaxTests/unimplemented_super_function.sol
2022-04-01 23:41:18 -05:00

9 lines
268 B
Solidity

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