t16558.nim 180 B

12345678910
  1. discard """
  2. matrix: "--gc:arc"
  3. errormsg: "expression cannot be cast to 'int'"
  4. """
  5. block: # bug #16558
  6. var value = "hi there"
  7. var keepInt: int
  8. keepInt = cast[int](value)