mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-24 00:05:25 +00:00
the parser finally parses 'echo {1,2}' as it should
This commit is contained in:
@@ -9,7 +9,7 @@ discard """
|
||||
import os
|
||||
|
||||
var
|
||||
thr: array [0..5, Thread[tuple[a, b: int]]]
|
||||
thr: array[0..5, Thread[tuple[a, b: int]]]
|
||||
|
||||
proc doNothing() = discard
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ discard """
|
||||
import os
|
||||
|
||||
var
|
||||
thr: array [0..5, Thread[tuple[a, b: int]]]
|
||||
thr: array[0..5, Thread[tuple[a, b: int]]]
|
||||
|
||||
proc doNothing() = discard
|
||||
|
||||
|
||||
Reference in New Issue
Block a user