mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
16 lines
319 B
Nim
16 lines
319 B
Nim
discard """
|
|
file: "tinvcolonlocation2.nim"
|
|
line: 11
|
|
column: 1
|
|
errormsg: "':' expected"
|
|
"""
|
|
try:
|
|
echo "try"
|
|
except #<- missing ':'
|
|
echo "except"
|
|
finally:
|
|
#<-- error will be here above, at the beginning of finally,
|
|
# since compiler tries to consome echo and part of except
|
|
# expression
|
|
echo "finally"
|