Index: test/mjsunit/regress/regress-crbug-465671-null.js |
diff --git a/test/mjsunit/regress/regress-crbug-465671-null.js b/test/mjsunit/regress/regress-crbug-465671-null.js |
deleted file mode 100644 |
index d24599c38526aca26943669a1b5e153ee652bd9a..0000000000000000000000000000000000000000 |
--- a/test/mjsunit/regress/regress-crbug-465671-null.js |
+++ /dev/null |
@@ -1,16 +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-arrow-functions |
- |
-// This used to trigger a segfault because of NULL being accessed. |
-function f() { |
- var a = [10]; |
- try { |
- f(); |
- } catch(e) { |
- a.map((v) => v + 1); |
- } |
-} |
-f(); |