using_01.sol 212 B

12345678910
  1. contract x {
  2. constructor() {}
  3. }
  4. contract c {
  5. using x for x;
  6. }
  7. // ---- Expect: diagnostics ----
  8. // error: 7:19-20: library expected but contract 'x' found