summary refs log tree commit diff stats
path: root/tests/discard/tneedsdiscard.nim
blob: 2a7856b4aa4201888f10ad09369d8057a7dcc181 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  line: 10
  errormsg: "value of type 'bool' has to be discarded"
"""

proc p =
  var f: TFile
  echo "hi"
  
  open(f, "arg.txt")
  
p()