diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/const.js | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/compress/const.js b/test/compress/const.js index aedfdbc3..b161e876 100644 --- a/test/compress/const.js +++ b/test/compress/const.js @@ -930,3 +930,36 @@ issue_4207: { } expect_stdout: "0" } + +issue_4210: { + options = { + reduce_vars: true, + } + input: { + (function() { + try { + throw 42; + } catch (e) { + const a = typeof e; + console.log(a); + } finally { + return a = "foo"; + } + })(); + console.log(typeof a); + } + expect: { + (function() { + try { + throw 42; + } catch (e) { + const a = typeof e; + console.log(a); + } finally { + return a = "foo"; + } + })(); + console.log(typeof a); + } + expect_stdout: true +} |