solidity/test/libsolidity/syntaxTests/inheritance/super_on_external.sol
2019-11-14 11:49:39 +01:00

11 lines
264 B
Solidity

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