mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 13:33:22 +00:00
10 lines
178 B
Nim
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)
|