Justin Collins a écrit :
Finally got this one narrowed down!

This causes an error during compilation:

if(true)
 var x = 1;

test.neko(1): Stack alignment failure

This does not:

if(true)
 { var x = 1; }

Nor does this:

if(true)
 x = 1;

-Justin

Thanks for reporting, using a "var" outside a {} block has now been forbidden.

Best,
Nicolas

--
Neko : One VM to run them all
(http://nekovm.org)

Reply via email to