fix corner cases in merge_vars & with exports (#4762)

fixes #4761
This commit is contained in:
Alex Lam S.L
2021-03-11 01:16:16 +00:00
committed by GitHub
parent b4944a31a4
commit 862b1b77b5
4 changed files with 42 additions and 11 deletions

View File

@@ -457,3 +457,10 @@ issue_4742_unused_2: {
a = "bar";
}
}
issue_4761: {
input: {
export default "function" == 42;
}
expect_exact: 'export default"function"==42;'
}