summaryrefslogtreecommitdiff
path: root/Zend/tests/objects_002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/objects_002.phpt')
-rw-r--r--Zend/tests/objects_002.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/Zend/tests/objects_002.phpt b/Zend/tests/objects_002.phpt
deleted file mode 100644
index 87ba0fdc3b..0000000000
--- a/Zend/tests/objects_002.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-method overloading with different method signature
---INI--
-error_reporting=8191
---FILE--
-<?php
-
-class test {
- function foo() {}
-}
-
-class test2 extends test {
- function foo() {}
-}
-
-class test3 extends test {
- function foo($arg) {}
-}
-
-echo "Done\n";
-?>
---EXPECTF--
-Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
-Done