test/script/basic/es6/let-redeclare.js

Print this page

        

@@ -32,7 +32,7 @@
 try {
     eval('"use strict";\n' +
          'let x = 2;\n' +
          'let x = 2;\n');
 } catch (e) {
-    print(e);
+    print(String(e).replace(/\\/g, "/"));
 }