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

13 lines
199 B
Nim

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