aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/unimplemented_super_function.sol
blob: 356727ae4dab45a314de6a2c056e492d83dc56a6 (plain) (tree)
1
2
3
4
5
6
7
8







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