summaryrefslogtreecommitdiff
path: root/Zend/tests/bug47981.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug47981.phpt')
-rw-r--r--Zend/tests/bug47981.phpt17
1 files changed, 0 insertions, 17 deletions
diff --git a/Zend/tests/bug47981.phpt b/Zend/tests/bug47981.phpt
deleted file mode 100644
index fba320bb13..0000000000
--- a/Zend/tests/bug47981.phpt
+++ /dev/null
@@ -1,17 +0,0 @@
---TEST--
-Bug #47981 (error handler not called regardless)
---INI--
-error_reporting=0
---FILE--
-<?php
-function errh($errno, $errstr) {
- var_dump($errstr);
-}
-set_error_handler("errh");
-
-interface a{}
-class b implements a { function f($a=1) {}}
-class c extends b {function f() {}}
-?>
---EXPECT--
-string(60) "Declaration of c::f() should be compatible with b::f($a = 1)"