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