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

16 lines
148 B
JavaScript

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