mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
13 lines
146 B
Nim
13 lines
146 B
Nim
discard """
|
|
line: 10
|
|
errormsg: "value of type 'bool' has to be discarded"
|
|
"""
|
|
|
|
proc p =
|
|
var f: TFile
|
|
echo "hi"
|
|
|
|
open(f, "arg.txt")
|
|
|
|
p()
|