solidity/test/libsolidity/ASTJSON/using_for_directive.sol
2022-03-14 12:33:44 +01:00

7 lines
92 B
Solidity

using {f} for uint;
library L {}
function f(uint) {}
contract C { using L for *; }
// ----