mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
10 lines
180 B
Nim
10 lines
180 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)
|