summaryrefslogtreecommitdiff
path: root/Zend/tests/debug_info-error-0.0.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/debug_info-error-0.0.phpt')
-rw-r--r--Zend/tests/debug_info-error-0.0.phpt19
1 files changed, 19 insertions, 0 deletions
diff --git a/Zend/tests/debug_info-error-0.0.phpt b/Zend/tests/debug_info-error-0.0.phpt
new file mode 100644
index 0000000000..67cbe8a749
--- /dev/null
+++ b/Zend/tests/debug_info-error-0.0.phpt
@@ -0,0 +1,19 @@
+--TEST--
+Testing __debugInfo() magic method with bad returns ZERO (float)
+--FILE--
+<?php
+
+class C {
+ public $val;
+ public function __debugInfo() {
+ return $this->val;
+ }
+ public function __construct($val) {
+ $this->val = $val;
+ }
+}
+
+$c = new C(0.0);
+var_dump($c);
+--EXPECTF--
+Fatal error: __debuginfo() must return an array in %s/Zend/tests/debug_info-error-0.0.php on line %d