diff --git a/implementation-contributed/javascriptcore/stress/regress-189292.js b/implementation-contributed/javascriptcore/stress/regress-189292.js
deleted file mode 100644
index 4314f9abe382bc3ed5ca41554564b393c6229c5d..0000000000000000000000000000000000000000
--- a/implementation-contributed/javascriptcore/stress/regress-189292.js
+++ /dev/null
@@ -1,18 +0,0 @@
-//@ runDefault
-
-function assert(a, b) {
-    if (a != b)
-        throw "FAIL";
-}
-
-function test(script) {
-    try {
-        eval(script);
-    } catch (e) {
-        return e;
-    }
-}
-
-assert(test("class C1 { async constructor() { } }"), "SyntaxError: Cannot declare an async method named 'constructor'.");
-assert(test("class C1 { *constructor() { } }"), "SyntaxError: Cannot declare a generator function named 'constructor'.");
-assert(test("class C1 { async *constructor() { } }"), "SyntaxError: Cannot declare an async generator method named 'constructor'.");