summaryrefslogtreecommitdiff
path: root/tests/specs/test/sanitizer_with_error/main.js
blob: 38d0ea81e18970617334001b92771c29b7ba22ec (plain)
1
2
3
4
5
6
Deno.test(function throws() {
  // Leak
  setTimeout(() => {}, 60_000);
  // But the exception should mask the leak
  throw new Error("Throws");
});