mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 04:24:49 +00:00
29 lines
426 B
ActionScript
29 lines
426 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestCollidingTry
|
|
{
|
|
public function run():*
|
|
{
|
|
var e:int = 0;
|
|
try
|
|
{
|
|
e = 0;
|
|
}
|
|
catch(e:*)
|
|
{
|
|
trace(e);
|
|
}
|
|
try
|
|
{
|
|
trace("x");
|
|
}
|
|
catch(e:*)
|
|
{
|
|
trace(e);
|
|
}
|
|
trace("y");
|
|
}
|
|
}
|
|
}
|