mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
13 lines
194 B
Nim
13 lines
194 B
Nim
discard """
|
|
line: 10
|
|
errormsg: '''expression 'open(f, "arg.txt", fmRead, -1)' is of type 'bool' and has to be discarded'''
|
|
"""
|
|
|
|
proc p =
|
|
var f: File
|
|
echo "hi"
|
|
|
|
open(f, "arg.txt")
|
|
|
|
p()
|