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