mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 10:22:15 +00:00
13 lines
157 B
Nim
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()
|