Files
Nim/tests/parser/tinvcolonlocation1.nim
Adam Strzelecki dc1b15647c Parser: Test for exact missing ':' location column
This ensures compiler points to the right place when claiming that ':' is
missing.
2015-04-21 11:32:13 +02:00

13 lines
181 B
Nim

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