diff options
Diffstat (limited to 'cli/tests/testdata/bundle/file_tests-subdir-h.ts')
-rw-r--r-- | cli/tests/testdata/bundle/file_tests-subdir-h.ts | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cli/tests/testdata/bundle/file_tests-subdir-h.ts b/cli/tests/testdata/bundle/file_tests-subdir-h.ts deleted file mode 100644 index 9c86dd5c5..000000000 --- a/cli/tests/testdata/bundle/file_tests-subdir-h.ts +++ /dev/null @@ -1,12 +0,0 @@ -const g: number[] = []; - -export class H { - #g!: number[]; - constructor(shared: boolean) { - if (shared) { - this.#g = g; - } else { - this.#g = []; - } - } -} |