summary refs log tree commit diff stats
path: root/tests/parser/tinvcolonlocation3.nim
blob: a8db658eb49cb85992826195c0f2c6e4d05e9699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  file: "tinvcolonlocation3.nim"
  line: 12
  column: 7
  errormsg: "expected: ':', but got: 'echo'"
"""
try:
  echo "try"
except:
  echo "except"
finally #<- missing ':'
  echo "finally"