summary refs log tree commit diff stats
path: root/tests/discard/tneedsdiscard.nim
blob: 2df3531e73a6b1ce79d82fae3229593c1528ad93 (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()