2
0
mirror of synced 2025-02-24 20:18:07 +00:00

10 lines
119 B
Solidity
Raw Normal View History

2019-08-19 11:53:58 -04:00
pragma solidity ^0.5.0;
import "./libraries/lib.sol";
contract Consumer {
function f() public {
Lib.f();
}
}