Files
Nim/tests/parser/tinvcolonlocation2.nim
2018-05-14 21:38:18 +02:00

16 lines
348 B
Nim

discard """
file: "tinvcolonlocation2.nim"
line: 11
column: 8
errormsg: "expected: ':', but got: 'keyword finally'"
"""
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"