summaryrefslogtreecommitdiff
path: root/Zend/tests/bug51394.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug51394.phpt')
-rw-r--r--Zend/tests/bug51394.phpt16
1 files changed, 16 insertions, 0 deletions
diff --git a/Zend/tests/bug51394.phpt b/Zend/tests/bug51394.phpt
new file mode 100644
index 0000000000..537574c9d5
--- /dev/null
+++ b/Zend/tests/bug51394.phpt
@@ -0,0 +1,16 @@
+--TEST--
+Bug #51394 (Error line reported incorrectly if error handler throws an exception)
+--INI--
+error_reporting=-1
+--FILE--
+<?php
+function eh()
+{
+ throw new Exception("error!");
+ return false;
+}
+
+set_error_handler("eh");
+$a = $empty($b);
+--EXPECTF--
+Fatal error: Function name must be a string in %sbug51394.php on line 9 \ No newline at end of file