summary refs log tree commit diff stats
path: root/tests/stdlib/tstreams3.nim
blob: e3b395e0588db03c82e630c95ab81f4411de344c (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  output: "threw exception"
"""
import streams

try:
  var fs = openFileStream("shouldneverexist.txt")
except IoError:
  echo "threw exception"