aboutsummaryrefslogtreecommitdiff
path: root/test/compress/awaits.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/compress/awaits.js')
-rw-r--r--test/compress/awaits.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/compress/awaits.js b/test/compress/awaits.js
index 0ffa1a9b..01a55710 100644
--- a/test/compress/awaits.js
+++ b/test/compress/awaits.js
@@ -1024,3 +1024,26 @@ issue_4581: {
expect_stdout: "PASS"
node_version: ">=8"
}
+
+issue_4595: {
+ options = {
+ awaits: true,
+ inline: true,
+ }
+ input: {
+ (async function() {
+ await async function f() {
+ console.log(f.length);
+ }();
+ })();
+ }
+ expect: {
+ (async function() {
+ await async function f() {
+ console.log(f.length);
+ }();
+ })();
+ }
+ expect_stdout: "0"
+ node_version: ">=8"
+}