summaryrefslogtreecommitdiff
path: root/tests/specs/bench/fail/fail.ts
blob: 33d70ce551806ffa7e40e18fe841514f05035705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Deno.bench("bench0", () => {
  throw new Error();
});
Deno.bench("bench1", () => {
  throw new Error();
});
Deno.bench("bench2", () => {
  throw new Error();
});
Deno.bench("bench3", () => {
  throw new Error();
});
Deno.bench("bench4", () => {
  throw new Error();
});
Deno.bench("bench5", () => {
  throw new Error();
});
Deno.bench("bench6", () => {
  throw new Error();
});
Deno.bench("bench7", () => {
  throw new Error();
});
Deno.bench("bench8", () => {
  throw new Error();
});
Deno.bench("bench9", () => {
  throw new Error();
});