mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
15 lines
188 B
Nim
15 lines
188 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_)
|
|
|
|
|
|
|