1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/specs/test/sanitizer_with_error/main.js
2024-03-13 20:49:54 -06:00

6 lines
149 B
JavaScript

Deno.test(function throws() {
// Leak
setTimeout(() => {}, 60_000);
// But the exception should mask the leak
throw new Error("Throws");
});