Index: test/mjsunit/regress/regress-459955.js |
diff --git a/test/message/super-in-function.js b/test/mjsunit/regress/regress-459955.js |
similarity index 68% |
copy from test/message/super-in-function.js |
copy to test/mjsunit/regress/regress-459955.js |
index edaa0e4eadc7befdb7ed28a3e06eaa827c4388f0..24eff6d40ca3ea359b0f3f843a86011d4cf0781f 100644 |
--- a/test/message/super-in-function.js |
+++ b/test/mjsunit/regress/regress-459955.js |
@@ -1,10 +1,10 @@ |
// 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-classes |
-'use strict'; |
-function f() { |
- super.x(); |
+function f(x) { |
+ var v; |
+ if (x) v = 0; |
+ return v <= 1; |
} |
+assertFalse(f(false)); |