error.sol 199 B

123456789101112
  1. contract error {
  2. error X();
  3. function foo() public {
  4. }
  5. }
  6. // ---- Expect: diagnostics ----
  7. // warning: 3:8-9: error 'X' has never been used
  8. // warning: 5:2-23: function can be declared 'pure'