Files
Nim/tests/parser/tinvcolonlocation3.nim
2018-12-11 21:23:21 +01:00

13 lines
200 B
Nim

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