mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
14 lines
176 B
JavaScript
14 lines
176 B
JavaScript
// https://github.com/espruino/Espruino/issues/1422
|
|
|
|
function meh() {
|
|
try {
|
|
throw "Oh no";
|
|
} catch(err) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
result = meh() == -1;
|
|
|
|
|