Annotation of embedaddon/php/Zend/tests/bug54305.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Bug #54305 (Crash in gc_remove_zval_from_buffer)
! 3: --FILE--
! 4: <?php
! 5: class TestClass {
! 6: public function methodWithArgs($a, $b) {
! 7: }
! 8: }
! 9: abstract class AbstractClass {
! 10: }
! 11: $methodWithArgs = new ReflectionMethod('TestClass', 'methodWithArgs');
! 12: echo $methodWithArgs++;
! 13: ?>
! 14: --EXPECTF--
! 15: Method [ <user> public method methodWithArgs ] {
! 16: @@ %sbug54305.php %d - %d
! 17:
! 18: - Parameters [2] {
! 19: Parameter #0 [ <required> $a ]
! 20: Parameter #1 [ <required> $b ]
! 21: }
! 22: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>