Espruino/tests/test_exception_2.js
2014-06-13 16:51:27 +01:00

14 lines
142 B
JavaScript

try {
throw "Oh Noes!";
} finally {
result = 1;
}
result = 0;
try {
result = 0;
} catch (e) {
result = 0;
} finally {
result = 0;
}