mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-23 11:26:52 +00:00
* fix #14217 Co-authored-by: cooldome <ariabushenko@bk.ru>
This commit is contained in:
@@ -1193,7 +1193,7 @@ when notJSnotNims and hasAlloc and not defined(nimSeqsV2):
|
||||
proc addChar(s: NimString, c: char): NimString {.compilerproc, benign.}
|
||||
|
||||
when defined(nimscript) or not defined(nimSeqsV2):
|
||||
proc add*[T](x: var seq[T], y: T) {.magic: "AppendSeqElem", noSideEffect.}
|
||||
proc add*[T](x: var seq[T], y: sink T) {.magic: "AppendSeqElem", noSideEffect.}
|
||||
## Generic proc for adding a data item `y` to a container `x`.
|
||||
##
|
||||
## For containers that have an order, `add` means *append*. New generic
|
||||
|
||||
@@ -28,11 +28,11 @@ proc add(x: var string; y: string)
|
||||
first type mismatch at position: 1
|
||||
required type for x: var string
|
||||
but expression 'k' is of type: Alias
|
||||
proc add[T](x: var seq[T]; y: T)
|
||||
proc add[T](x: var seq[T]; y: openArray[T])
|
||||
first type mismatch at position: 1
|
||||
required type for x: var seq[T]
|
||||
but expression 'k' is of type: Alias
|
||||
proc add[T](x: var seq[T]; y: openArray[T])
|
||||
proc add[T](x: var seq[T]; y: sink T)
|
||||
first type mismatch at position: 1
|
||||
required type for x: var seq[T]
|
||||
but expression 'k' is of type: Alias
|
||||
|
||||
@@ -32,3 +32,29 @@ proc test1() =
|
||||
echo "test1 OK"
|
||||
|
||||
test1()
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# issue #14217
|
||||
|
||||
type
|
||||
MyObject = object
|
||||
p: ptr int
|
||||
|
||||
proc `=destroy`(x: var MyObject) =
|
||||
if x.p != nil:
|
||||
deallocShared(x.p)
|
||||
|
||||
proc `=`(x: var MyObject, y: MyObject) {.error.}
|
||||
|
||||
proc newMyObject(i: int): MyObject =
|
||||
result.p = create(int)
|
||||
result.p[] = i
|
||||
|
||||
proc test: seq[MyObject] =
|
||||
for i in 0..3:
|
||||
let x = newMyObject(i)
|
||||
result.add x
|
||||
|
||||
var x = test()
|
||||
for i in 0..3:
|
||||
doAssert(x[i].p[] == i)
|
||||
|
||||
Reference in New Issue
Block a user