summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/bundle/file_tests-fixture13.ts
blob: 7dc13534c1be0b14ad5a9db37ef347ec19ad7b9d (plain)
1
2
3
4
5
6
7
8
9
10
11
import { D, d } from "./subdir/q.ts";

class A {
  private s: D = d();

  a() {
    this.s.resolve();
  }
}

new A();