erg/examples/move_check.er
2024-04-04 23:24:07 +09:00

12 lines
165 B
Python

v = ![]
v.push! 1
w = v
print! w
print! v # this should cause a MoveError
push! |T| a: RefMut(List!(T, _)), value: T =
a.push! value
push! w, 2
print! w # OK