From faf2e802724be9d493dad232759b76e7253feab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 2 Mar 2021 13:39:56 +0100 Subject: chore: upgrade crates (#9632) --- cli/tests/bundle/fixture10.out | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'cli/tests/bundle/fixture10.out') diff --git a/cli/tests/bundle/fixture10.out b/cli/tests/bundle/fixture10.out index 776aac1ae..5491e5e7f 100644 --- a/cli/tests/bundle/fixture10.out +++ b/cli/tests/bundle/fixture10.out @@ -1,6 +1,5 @@ const a = "a"; -const a1 = a; const o = { }; -const { a: a2 = a1 } = o; -console.log(a2); +const { a: a1 = a } = o; +console.log(a1); -- cgit v1.2.3