Files
Nim/tests/stdlib/tstreams3.nim
2018-12-11 21:23:21 +01:00

10 lines
156 B
Nim

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