summary refs log tree commit diff stats
path: root/tests/lexer/tunderscores.nim
blob: 1896a2898cee8cedd64fd1210f8fa5823200b68f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  errormsg: "invalid token: trailing underscore"
  file: "tunderscores.nim"
  line: 8
"""
# Bug #502670

var ef_ = 3  #ERROR_MSG invalid token: _
var a__b = 1
var c___d = 2
echo(ab, cd, ef_)