Files
hakorune/local_tests/test_array_state_issue.hako

11 lines
285 B
Plaintext
Raw Normal View History

// 🚨 ArrayBox状態保持問題のテスト
static box Main {
init { result }
main() {
local arr
arr = new ArrayBox()
arr.push("hello") // 状態変更
me.result = arr.length() // 期待値: 1, 実際: 0?
return me.result
}
}