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

13 lines
200 B
Nim

discard """
file: "tinvcolonlocation3.nim"
line: 12
column: 7
errormsg: "expected: ':', but got: 'echo'"
"""
try:
echo "try"
except:
echo "except"
finally #<- missing ':'
echo "finally"