2019-03-13 00:11:16 +01:00

11 lines
101 B
JavaScript

class Cl {
static *#foo() {
yield 2;
return 3;
}
test() {
return Cl.#foo();
}
}