erg/tests/should_err/move.er
Shunsuke Shibayama 1e72cf20f1 fix: casting bugs
2023-04-27 13:58:15 +09:00

12 lines
214 B
Python

a = ![]
a.sort! # WARN
# NOTE: For safety reasons this is assumed to be an error, but maybe this restriction can be relaxed
print! a # ERR
v1 = ![]
v2 = v1 as Array!(Int or Str, _)
v2.push! "a"
print! v1 # ERR