mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-19 23:41:29 +00:00
Improve effect propagation by skipping hooks in trackCall (#25940)
ref https://github.com/nim-lang/Nim/pull/25731 don't propagate effects for assignment hooks without effect lists
This commit is contained in:
@@ -13,4 +13,12 @@ proc send(x: string) =
|
||||
let wrapper = Thing(x: x)
|
||||
discard isolate(wrapper)
|
||||
|
||||
send("la")
|
||||
send("la")
|
||||
|
||||
block:
|
||||
func enqueue[T](buf: var array[10, T], elem: sink T) =
|
||||
`=sink`(buf[0], elem)
|
||||
|
||||
var buf: array[10, int]
|
||||
enqueue(buf, 42)
|
||||
assert buf[0] == 42
|
||||
Reference in New Issue
Block a user