From 18d3ad0ab28d8b59400c5540b7c3f78e3797a25a Mon Sep 17 00:00:00 2001 From: Rich-Harris Date: Sun, 27 Mar 2016 18:45:46 -0400 Subject: [PATCH] gah 0.12 --- test/function/deshadowed-shorthand-property/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/function/deshadowed-shorthand-property/main.js b/test/function/deshadowed-shorthand-property/main.js index 3cc4941..7942ca4 100644 --- a/test/function/deshadowed-shorthand-property/main.js +++ b/test/function/deshadowed-shorthand-property/main.js @@ -1,7 +1,7 @@ import foo from './foo.js'; function x () { - const answer = foo(); + var answer = foo(); return { answer }; }