mirror of
https://github.com/espruino/Espruino.git
synced 2026-01-25 14:47:38 +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;
|
|
|
|
|