solidity/test/libsolidity/syntaxTests/bound/interface_using_for.sol
2020-08-27 15:57:51 +02:00

11 lines
202 B
Solidity

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