mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 18:32:11 +00:00
12 lines
203 B
Nim
12 lines
203 B
Nim
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_)
|