9 lines
88 B
JavaScript
9 lines
88 B
JavaScript
class C {
|
|
static async *g() {
|
|
this;
|
|
await 1;
|
|
yield 2;
|
|
return 3;
|
|
}
|
|
}
|