mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-04 04:54:49 +00:00
newLit emty seq fix (#6091)
* the type of the empty seq is still the correct type * updated test
This commit is contained in:
committed by
Andreas Rumpf
parent
03e0aa37e3
commit
52cab78ae5
@@ -138,3 +138,12 @@ macro test_newLit_ComposedType: untyped =
|
||||
result = newLit(ct)
|
||||
|
||||
doAssert test_newLit_ComposedType == ComposedType(mt: MyType(a: 123, b:"abc"), arr: [1,2,3,4], data: @[1.byte, 3, 7, 127])
|
||||
|
||||
macro test_newLit_empty_seq_string: untyped =
|
||||
var strSeq = newSeq[string](0)
|
||||
result = newLit(strSeq)
|
||||
|
||||
block:
|
||||
# x needs to be of type seq[string]
|
||||
var x = test_newLit_empty_seq_string
|
||||
x.add("xyz")
|
||||
|
||||
Reference in New Issue
Block a user