mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 14:18:42 +01:00
- Make sure it handles an empty gray set. - Make sure growing the gray stack doesn't itself trigger a GC. - Make sure it works when stress testing is enabled. - Ensure the tests kick off a GC.
9 lines
112 B
Plaintext
9 lines
112 B
Plaintext
var head
|
|
|
|
for (i in 1..400000) {
|
|
head = { "next" : head }
|
|
}
|
|
|
|
System.gc()
|
|
System.print("done") // expect: done
|