Nov. 16, 2015
11:56 a.m.
On 16 Nov 2015, at 08:08, Henrik Johansen <henrik.s.johansen@veloxit.no> wrote:
On 16 Nov 2015, at 11:49 , Boris Spasojevic <spasojev@inf.unibe.ch <mailto:spasojev@inf.unibe.ch>> wrote:
Hey all,
How and where can I report the pharo VM crashing? if I have a class Tmp and it has a method
Tmp>>tmp [ ^ true ]
and I try to execute Tmp new tmp. The VM segfaults. -- Cheers, BoriS
That's a compiler (and probably a code) bug. It correctly eliminates the unused block, but it *should* emit a return self instruction (as it would for a method with an empty body), but it doesn't, which is why the VM crashes.
Yes, thatâs it. Should not be to hard to fix.. can you add an issue to the issue tracker? Marcus