Files
Nim/tests/effects/teffects2.nim
Adam Strzelecki e80465dacf tests: Trim .nim files trailing whitespace
via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
2015-09-04 23:04:32 +02:00

21 lines
362 B
Nim

discard """
line: 19
errormsg: "can raise an unlisted exception: ref IOError"
"""
type
TObj = object {.pure, inheritable.}
TObjB = object of TObj
a, b, c: string
EIO2 = ref object of IOError
proc forw: int {.raises: [].}
proc lier(): int {.raises: [IOError].} =
writeLine stdout, "arg"
proc forw: int =
raise newException(IOError, "arg")