summary refs log tree commit diff stats
path: root/tests/discard/tneedsdiscard.nim
blob: 75cd9d2df56e92298095d077e607a7d6faf73e7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  errormsg: '''expression 'open(f, "arg.txt", fmRead, -1)' is of type 'bool' and has to be used (or discarded); start of expression here: tneedsdiscard.nim(7, 3)'''
  line: 10
"""

proc p =
  var f: File
  echo "hi"

  open(f, "arg.txt")

p()