solidity/test/libsolidity/syntaxTests/inheritance/super_on_external.sol

11 lines
275 B
Solidity

contract A {
function f() external virtual pure {}
}
contract B is A {
function f() public override pure {
super.f();
}
}
// ----
// TypeError 9582: (123-130): Member "f" not found or not visible after argument-dependent lookup in type(contract super B).