| Index: test/mjsunit/regress/regress-crbug-487105.js
|
| diff --git a/test/message/strict-formal-parameters.js b/test/mjsunit/regress/regress-crbug-487105.js
|
| similarity index 75%
|
| copy from test/message/strict-formal-parameters.js
|
| copy to test/mjsunit/regress/regress-crbug-487105.js
|
| index a6c75317b374e6a06d3497f3812f3f220db3e880..160f9b04e030baff7ee815c3b0ce53cae59d693a 100644
|
| --- a/test/message/strict-formal-parameters.js
|
| +++ b/test/mjsunit/regress/regress-crbug-487105.js
|
| @@ -3,4 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| "use strict";
|
| -function foo(b, a, a, d) { return a }
|
| +function assertThrows() {
|
| + eval();
|
| +};
|
| +eval("delete this;")
|
|
|