aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/301_library_instances_cannot_be_used.sol
blob: dcf11a6e31bbbec4eeed71b0d206e9145864fff6 (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.