Index: test/mjsunit/harmony/regress/regress-4298.js |
diff --git a/test/mjsunit/harmony/regress/regress-4298.js b/test/mjsunit/harmony/regress/regress-4298.js |
deleted file mode 100644 |
index 98e69d1acf0ea4eb925f75c95c3b3b5fcc0854bf..0000000000000000000000000000000000000000 |
--- a/test/mjsunit/harmony/regress/regress-4298.js |
+++ /dev/null |
@@ -1,8 +0,0 @@ |
-// Copyright 2015 the V8 project authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
-// |
-// Flags: --harmony-spread-arrays |
- |
-var arr = [1, 2, ...[3]]; |
-assertEquals([1, 2, 3], arr); |