mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
* fixes #17369 * megatest is green for --cpu:arm64 * docgen output includes more tags/raises * implemented 'effectsOf' * algorithm.nim: uses new effectsOf annotation * closes #18376 * closes #17475 * closes #13905 * allow effectsOf: [a, b] * added a test case * parameters that are not ours cannot be declared as .effectsOf * documentation * manual: added the 'sort' example * bootstrap with the new better options
21 lines
404 B
Nim
21 lines
404 B
Nim
discard """
|
|
errormsg: "can raise an unlisted exception: ref IOError"
|
|
line: 19
|
|
"""
|
|
{.push warningAsError[Effect]: on.}
|
|
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")
|
|
{.pop.}
|