Chromium Code Reviews| Index: test/message/import-redeclaration.js |
| diff --git a/test/message/import-eval.js b/test/message/import-redeclaration.js |
| similarity index 81% |
| copy from test/message/import-eval.js |
| copy to test/message/import-redeclaration.js |
| index 8ab35baef672a45d6a449fd328941dc4ff9a00eb..27b0cdccef434f30e688c3335947d21958dcdb71 100644 |
| --- a/test/message/import-eval.js |
| +++ b/test/message/import-redeclaration.js |
| @@ -4,4 +4,5 @@ |
| // |
| // MODULE |
| -import { eval } from "mod"; |
| +let foo = 42; |
| +import { foo } from "mod"; |