tillegaldiscardtypes.nim 361 B

1234567891011121314
  1. discard """
  2. cmd: "nim check $file"
  3. errormsg: "statement returns no value that can be discarded"
  4. nimout: '''
  5. tillegaldiscardtypes.nim(11, 3) Error: statement returns no value that can be discarded
  6. tillegaldiscardtypes.nim(12, 3) Error: statement returns no value that can be discarded
  7. '''
  8. """
  9. proc b(v: int) = # bug #21360
  10. discard @[]
  11. discard []
  12. b(0)