blob: 4f0161b7c75c4dd57dd1d8ff5c2f9b854348d3ca (
plain) (
tree)
11c377c11 ^
discard """
errormsg: "can raise an unlisted exception: ref Exception"
file: "tuserpragma2.nim"
line: 11
"""
# bug #7216
{.pragma: my_pragma, raises: [].}
proc test1 {.my_pragma.} =
raise newException(Exception, "msg")
|