mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-14 05:52:07 +00:00
23 lines
232 B
ActionScript
23 lines
232 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestMissingDefault
|
|
{
|
|
public function run():*
|
|
{
|
|
var jj:int = 1;
|
|
switch (jj)
|
|
{
|
|
case 1:
|
|
jj = 1;
|
|
break;
|
|
case 2:
|
|
jj = 2;
|
|
break;
|
|
default:
|
|
jj = 3;
|
|
}
|
|
}
|
|
}
|
|
}
|