summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture07.out
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/bundle/fixture07.out')
-rw-r--r--cli/tests/bundle/fixture07.out23
1 files changed, 0 insertions, 23 deletions
diff --git a/cli/tests/bundle/fixture07.out b/cli/tests/bundle/fixture07.out
deleted file mode 100644
index 39e6a11e8..000000000
--- a/cli/tests/bundle/fixture07.out
+++ /dev/null
@@ -1,23 +0,0 @@
-const g = [];
-class G {
- #g;
- constructor(shared){
- if (shared) {
- this.#g = g;
- } else {
- this.#g = [];
- }
- }
-}
-const g1 = [];
-class H {
- #g;
- constructor(shared1){
- if (shared1) {
- this.#g = g1;
- } else {
- this.#g = [];
- }
- }
-}
-console.log(new G(true), new H(true));