Files
Nim/tests/arc/t16558.nim
flywind 677969f6ea alternative to #18918 (#18927)
* fix #16558

* add testcase
2021-09-30 16:57:06 +02:00

10 lines
178 B
Nim

discard """
matrix: "--gc:arc"
errormsg: "expression cannot be cast to int"
"""
block: # bug #16558
var value = "hi there"
var keepInt: int
keepInt = cast[int](value)