From: kramm Date: Fri, 2 Jan 2009 19:43:22 +0000 (+0000) Subject: test for a stack underflow problem, too X-Git-Tag: release-0-9-0~494 X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=e49dd9062816b2f2f4bf3ffa7840fa08b72395b9;hp=2fad8489b0d1edadb51e048e606f54537b8a869d;p=swftools.git test for a stack underflow problem, too --- diff --git a/lib/as3/ok/switch.as b/lib/as3/ok/switch.as index 0d83e82..6638a54 100644 --- a/lib/as3/ok/switch.as +++ b/lib/as3/ok/switch.as @@ -25,6 +25,11 @@ package { switch(1) { case 10: } + + switch(1) { + case 1: late1 = false; break; + } } + var late1:Boolean; } }