summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/15.3.2.1-11-2-s.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/15.3.2.1-11-2-s.js')
-rw-r--r--test/built-ins/Function/15.3.2.1-11-2-s.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/built-ins/Function/15.3.2.1-11-2-s.js b/test/built-ins/Function/15.3.2.1-11-2-s.js
index ca72758c8..7f670f147 100644
--- a/test/built-ins/Function/15.3.2.1-11-2-s.js
+++ b/test/built-ins/Function/15.3.2.1-11-2-s.js
@@ -7,16 +7,6 @@ description: >
Duplicate seperate parameter name in Function constructor called
from strict mode allowed if body not strict
flags: [onlyStrict]
-includes: [runTestCase.js]
---*/
-function testcase()
-{
- try {
Function('a','a','return;');
- return true;
- } catch (e) {
- return false;
- }
- }
-runTestCase(testcase);