summaryrefslogtreecommitdiff
path: root/Zend/tests/bug54305.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug54305.phpt')
-rw-r--r--Zend/tests/bug54305.phpt17
1 files changed, 7 insertions, 10 deletions
diff --git a/Zend/tests/bug54305.phpt b/Zend/tests/bug54305.phpt
index 8e85d2be58..a443d480ec 100644
--- a/Zend/tests/bug54305.phpt
+++ b/Zend/tests/bug54305.phpt
@@ -9,14 +9,11 @@ class TestClass {
abstract class AbstractClass {
}
$methodWithArgs = new ReflectionMethod('TestClass', 'methodWithArgs');
-echo $methodWithArgs++;
-?>
---EXPECTF--
-Method [ <user> public method methodWithArgs ] {
- @@ %sbug54305.php %d - %d
-
- - Parameters [2] {
- Parameter #0 [ <required> $a ]
- Parameter #1 [ <required> $b ]
- }
+try {
+ echo $methodWithArgs++;
+} catch (TypeError $e) {
+ echo $e->getMessage(), "\n";
}
+?>
+--EXPECT--
+Cannot increment object