summaryrefslogtreecommitdiff
path: root/cli/tests/error_020_stack_constructor.ts
blob: 49988280b1f73516c88c949ed0dadd6d78c4a823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class A {
  constructor() {
    throw new Error("constructor");
  }
}

try {
  new A();
} catch (error) {
  console.log(error.stack);
  throw error;
}