mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
15 lines
189 B
Nim
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_)
|
|
|
|
|
|
|