summaryrefslogtreecommitdiff
path: root/Zend/tests/objects_010.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/objects_010.phpt')
-rw-r--r--Zend/tests/objects_010.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/Zend/tests/objects_010.phpt b/Zend/tests/objects_010.phpt
deleted file mode 100644
index 5d004629d9..0000000000
--- a/Zend/tests/objects_010.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-redefining constructor (__construct second)
---INI--
-error_reporting=8191
---FILE--
-<?php
-
-class test {
- function test() {
- }
- function __construct() {
- }
-}
-
-echo "Done\n";
-?>
---EXPECTF--
-Strict Standards: Redefining already defined constructor for class test in %s on line %d
-Done