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

13 lines
199 B
Nim

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