Files
2020-05-26 22:18:17 +02:00

14 lines
131 B
JavaScript

class Foo {
#foo = 1;
test() {
class Nested {
test() {
#foo in this;
}
}
#foo in this;
}
}