mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
18 lines
279 B
Nim
18 lines
279 B
Nim
discard """
|
|
cmd: "nim cpp $file"
|
|
output: '''foo
|
|
bar
|
|
Need odd and >= 3 digits##
|
|
baz'''
|
|
"""
|
|
|
|
# bug #1888
|
|
echo "foo"
|
|
try:
|
|
echo "bar"
|
|
raise newException(ValueError, "Need odd and >= 3 digits")
|
|
# echo "baz"
|
|
except ValueError:
|
|
echo getCurrentExceptionMsg(), "##"
|
|
echo "baz"
|