mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 21:17:48 +00:00
11 lines
233 B
Nim
11 lines
233 B
Nim
discard """
|
|
cmd: "nim c --gc:arc --exceptions:goto $file"
|
|
outputsub: "Error: unhandled exception: virus detected [ValueError]"
|
|
exitcode: "1"
|
|
"""
|
|
|
|
# bug #13436
|
|
proc foo =
|
|
raise newException(ValueError, "virus detected")
|
|
foo()
|