diff options
Diffstat (limited to 'cli/tests/bundle/fixture10.out')
-rw-r--r-- | cli/tests/bundle/fixture10.out | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/tests/bundle/fixture10.out b/cli/tests/bundle/fixture10.out index 7436722b5..5491e5e7f 100644 --- a/cli/tests/bundle/fixture10.out +++ b/cli/tests/bundle/fixture10.out @@ -1,4 +1,5 @@ +const a = "a"; const o = { }; -const { a ="a" } = o; -console.log(a); +const { a: a1 = a } = o; +console.log(a1); |