mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 03:32:32 +00:00
* Extend the fix for #11018 to strings * Fix testcase
This commit is contained in:
@@ -1839,7 +1839,7 @@ proc genSomeCast(p: BProc, e: PNode, d: var TLoc) =
|
||||
if srcTyp.kind in {tyPtr, tyPointer} and etyp.kind in IntegralTypes:
|
||||
putIntoDest(p, d, e, "(($1) (ptrdiff_t) ($2))" %
|
||||
[getTypeDesc(p.module, e.typ), rdCharLoc(a)], a.storage)
|
||||
elif p.config.selectedGc == gcDestructors and etyp.kind == tySequence:
|
||||
elif p.config.selectedGc == gcDestructors and etyp.kind in {tySequence, tyString}:
|
||||
putIntoDest(p, d, e, "(*($1*) (&$2))" %
|
||||
[getTypeDesc(p.module, e.typ), rdCharLoc(a)], a.storage)
|
||||
else:
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
discard """
|
||||
cmd: '''nim c --newruntime $file'''
|
||||
output: '''@[1]
|
||||
@[116, 101, 115, 116]'''
|
||||
@[116, 101, 115, 116]
|
||||
test
|
||||
@[1953719668, 875770417]'''
|
||||
"""
|
||||
|
||||
# bug #11018
|
||||
@@ -9,3 +11,9 @@ discard cast[seq[uint8]](@[1])
|
||||
discard cast[seq[uint8]]("test")
|
||||
echo cast[seq[uint8]](@[1])
|
||||
echo cast[seq[uint8]]("test")
|
||||
|
||||
discard cast[string](@[116'u8, 101, 115, 116])
|
||||
echo cast[string](@[116'u8, 101, 115, 116])
|
||||
var a = cast[seq[uint32]]("test1234")
|
||||
a.setLen(2)
|
||||
echo a
|
||||
|
||||
Reference in New Issue
Block a user