solidity/test/libsolidity/syntaxTests/types/function_types/selector/state_variable_selector_super.sol

10 lines
239 B
Solidity
Raw Normal View History

contract B {
function() external public g;
}
contract C is B {
bytes4 constant s4 = super.g.selector;
}
// ----
// TypeError 9582: (93-100): Member "g" not found or not visible after argument-dependent lookup in contract super C.