solidity/test/libsolidity/syntaxTests/bound/interface_using_for.sol

11 lines
204 B
Solidity
Raw Normal View History

library L {
function f() public {}
}
interface I {
using L for int;
function g() external;
}
// ----
2021-10-11 08:16:52 +00:00
// SyntaxError 9088: (60-76): The "using for" directive is not allowed inside interfaces.