mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 06:20:37 +02:00
13 lines
154 B
JavaScript
13 lines
154 B
JavaScript
async function* fn() {
|
|
return p
|
|
return q
|
|
switch (0) {
|
|
case 1:
|
|
i++;
|
|
i++;
|
|
foo(x, arguments[z]);
|
|
break;
|
|
}
|
|
}
|
|
fn().next();
|