summary refs log blame commit diff stats
path: root/tests/parser/tinvcolonlocation3.nim
blob: 2b30b1dbe9a6ee9a884223e55203b21be34277af (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











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