summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/file_tests-subdir-g.ts
blob: 3eb4cd3cc2eec1c64e44636519b5464c802e3967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const g: number[] = [];

export class G {
  #g!: number[];
  constructor(shared: boolean) {
    if (shared) {
      this.#g = g;
    } else {
      this.#g = [];
    }
  }
}