Files
Nim/tests/reject/tunderscores.nim
2013-03-16 23:53:07 +01:00

15 lines
189 B
Nim

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_)