| Index: test/mjsunit/es6/block-conflicts-sloppy.js
|
| diff --git a/test/mjsunit/es6/block-conflicts-sloppy.js b/test/mjsunit/es6/block-conflicts-sloppy.js
|
| index b2ebfce6c995e6de6c4012e159a748e2f6e72b97..866abeef4b076019239f18530a9855ce164cd3c2 100644
|
| --- a/test/mjsunit/es6/block-conflicts-sloppy.js
|
| +++ b/test/mjsunit/es6/block-conflicts-sloppy.js
|
| @@ -170,5 +170,8 @@
|
| TestNoConflict('(function (x) {' + varbinds[v] + '})();');
|
| }
|
|
|
| +// Test conflicting catch/function bindings.
|
| +TestNoConflict('try {} catch(x) {' + funbind + '}');
|
| +
|
| // Test conflicting parameter/function bindings.
|
| TestNoConflict('(function (x) {' + funbind + '})();');
|
|
|