Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_new/src/tests/TestDefaultNotLastGrouped.as

24 lines
311 B
ActionScript

package tests
{
public class TestDefaultNotLastGrouped
{
public function run():*
{
var k:* = 10;
switch (k)
{
default:
case "six":
trace("def and 6");
case "five":
trace("def and 6 and 5");
break;
case "four":
trace("4");
}
trace("after switch");
}
}
}