54e619457eea3be2790d0fa66cba06d2e9a36f17.sol 291 B

123456789101112131415161718192021
  1. interface I {
  2. function f(int) external;
  3. }
  4. library L {
  5. function F(I i, bool b, int n) public {
  6. if (b) {
  7. print("Hello");
  8. }
  9. }
  10. }
  11. contract C {
  12. using L for I;
  13. function test() public {
  14. I i = I(address(0));
  15. i.F(true, 102);
  16. }
  17. }