Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/cross_compile/src/tests/TestTryFinallyNoCatch.as
T
Jindra Petřík 0a7f39b82c Improved tests.
Fixed try..catch..finally.
2021-02-08 20:15:19 +01:00

26 lines
269 B
ActionScript

package tests
{
/**
* ...
* @author JPEXS
*/
public class TestTryFinallyNoCatch
{
public function run() : void
{
trace("before try");
try
{
trace("in try");
}
finally
{
trace("in finally");
}
trace("after");
}
}
}