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




                              






                                        

 
discard """
  file: "tunderscores.nim"
  line: 8
  errormsg: "invalid token: _"
"""
# Bug #502670 

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