aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/301_library_instances_cannot_be_used.sol
blob: 82e4a0d1a0e4aed6952b2d5b853486dc787e4dc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
library L { function l() public {} }
contract test {
    function f() public {
        L x;
        x.l();
    }
}
// ----
// TypeError: (100-103): Member "l" not found or not visible after argument-dependent lookup in library L