solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
library L {
    function f() public {}
}

interface I {
    using L for int;
    function g() external;
}
// ----
// SyntaxError 9088: (60-76): The "using for" directive is not allowed inside interfaces.