Files
Nim/tests/discard/tneedsdiscard.nim
2014-01-13 02:10:03 +01: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()