release 0.5.4
[swfdec.git] / test / trace / try-throw-in-finally.as
blobb80ef4e9996e18f3d4a0c7e54a560632e308e8e9
1 // makeswf -v 7 -r 1 -o try-throw-in-finally-7.swf try-throw-in-finally.as
3 trace ("Test what exception is thrown out of finally");
5 try {
6 try {
7 throw "try";
8 } catch (exception) {
9 throw "catch";
10 } finally {
11 throw "finally";
13 } catch (exception) {
14 trace (exception);
17 loadMovie ("FSCommand:quit", "");