| Index: test/mjsunit/harmony/block-conflicts.js
 | 
| diff --git a/test/mjsunit/harmony/block-conflicts.js b/test/mjsunit/harmony/block-conflicts.js
 | 
| index 8b171f1710f1241c1b82bb3a307ab09d62c0e096..e27d6a1d38e421f7b4976c7f4989db27b1df5662 100644
 | 
| --- a/test/mjsunit/harmony/block-conflicts.js
 | 
| +++ b/test/mjsunit/harmony/block-conflicts.js
 | 
| @@ -80,6 +80,11 @@ var letbinds = [ "let x",
 | 
|                   "let x = function() {}",
 | 
|                   "let x, y",
 | 
|                   "let y, x",
 | 
| +                 "const x = 0",
 | 
| +                 "const x = undefined",
 | 
| +                 "const x = function() {}",
 | 
| +                 "const x = 2, y = 3",
 | 
| +                 "const y = 4, x = 5",
 | 
|                   ];
 | 
|  var varbinds = [ "var x",
 | 
|                   "var x = 0",
 | 
| 
 |