1--TEST-- 2Bug #54305 (Crash in gc_remove_zval_from_buffer) 3--FILE-- 4<?php 5class TestClass { 6 public function methodWithArgs($a, $b) { 7 } 8} 9abstract class AbstractClass { 10} 11$methodWithArgs = new ReflectionMethod('TestClass', 'methodWithArgs'); 12echo $methodWithArgs++; 13?> 14--EXPECTF-- 15Method [ <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} 23