[squeak-dev] Crash

Jörg Belger unique75 at web.de
Thu Feb 3 21:30:49 UTC 2022


This leads to an image/VM crash too

	| oc |
	oc := OrderedCollection new.
	400000000 timesRepeat: [oc add: Object new]

This here is working for me:

	| oc |
	oc := OrderedCollection new: 400000000.
	400000000 timesRepeat: [oc add: Object new]

This here is working too for me:

	| oc |
	oc := OrderedCollection new.
	400000000 timesRepeat: [oc add: 1]

It seems there is possibly a memory problem in the VM.



More information about the Squeak-dev mailing list