Hi,
See screenshot: in my case, loading from filetree almost always throws the bug. I am using the latest Mac OS X pharo vm.
If I change the method in the screenshot by extracting the assignment into a separate statement, the problem disappears.
However, I can also still reproduce it reliably with Kris� code snippet from the same issue thread:
1 to: 1000 do: [ :i |
| string |
Transcript show: 'Iteration '; show: i; cr.
1 timesRepeat: [
(string := String new: 1000 withAll: $a)
reversed.
].
].
(NOTE: Transcript must be open!)
Reopen? Add a new report?
Johan