restrictions_06.sol 249 B

12345678
  1. library c is x {
  2. fallback() internal {}
  3. }
  4. // ---- Expect: diagnostics ----
  5. // error: 2:22-23: library 'c' cannot have a base contract
  6. // error: 2:22-23: 'x' not found
  7. // error: 3:13-32: fallback not allowed in a library