blob: f57d48a48dffc8c332c6767875323346d2a8572f [file] [edit]
let error = null;
try {
throw new Error('Caught');
} catch (e) {
error = e;
}
if (error) {
throw new Error('Uncaught');
}