Skip to content

Commit 2b40f51

Browse files
committed
Add test
1 parent 2e1247b commit 2b40f51

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class C {
2+
static foo = bar;
3+
}
4+
5+
(class C {
6+
static foo = bar;
7+
});
8+
9+
class D {
10+
static #_ = (this.FOO = {});
11+
}
12+
13+
(class D {
14+
static #_ = (this.FOO = {});
15+
});
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
class C {
2+
static foo = bar;
3+
}
4+
bar;
5+
class D {
6+
static #_ = this.FOO = {};
7+
}
8+
(class {
9+
static #_ = this.FOO = {};
10+
});

0 commit comments

Comments
 (0)