Files
Nim/tests/reject/tneedsdiscard.nim
2013-06-04 07:48:46 +02:00

13 lines
157 B
Nim

discard """
line: 10
errormsg: "value returned by statement has to be discarded"
"""
proc p =
var f: TFile
echo "hi"
open(f, "arg.txt")
p()