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