- Version: 7.7.3
- Platform: Arch Linux
Testcase:
async function test() {
try {
console.log("1");
return await Promise.resolve();
} finally {
console.log("2");
await Promise.resolve();
console.log("3");
}
}
test().then(() => {
console.log("4");
});
Expected:
Actual: