Index: test/mjsunit/harmony/block-let-semantics.js |
diff --git a/test/mjsunit/harmony/block-let-semantics.js b/test/mjsunit/harmony/block-let-semantics.js |
index f45b72ff0ff2e178578608c353472331a74378ad..d14e7cd3692c855b5d88940a0cf3c91646412b96 100644 |
--- a/test/mjsunit/harmony/block-let-semantics.js |
+++ b/test/mjsunit/harmony/block-let-semantics.js |
@@ -27,6 +27,9 @@ |
// Flags: --harmony-scoping |
+// TODO(ES6): properly activate extended mode |
+"use strict"; |
+ |
// Test temporal dead zone semantics of let bound variables in |
// function and block scopes. |
@@ -127,7 +130,7 @@ TestAll('{ function k() { return 0; } }; k(); '); |
// Test that a function declaration sees the scope it resides in. |
function f2() { |
- let m, n; |
+ let m, n, o, p; |
{ |
m = g; |
function g() { |