2
0
mirror of synced 2025-02-24 20:18:07 +00:00
2019-12-09 23:01:21 -05:00

10 lines
119 B
Solidity

pragma solidity ^0.5.0;
import "./libraries/lib.sol";
contract Consumer {
function f() public {
Lib.f();
}
}