mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
25 lines
365 B
PHP
25 lines
365 B
PHP
--TEST--
|
|
registering a function and calling it leaks arguments memory
|
|
--FILE--
|
|
<?php
|
|
echo "Done\n";
|
|
?>
|
|
--PHPDBG--
|
|
register var_dump
|
|
var_dump "a" "b"
|
|
register flush
|
|
flush
|
|
r
|
|
q
|
|
--EXPECTF--
|
|
[Successful compilation of %s]
|
|
prompt> [Registered var_dump]
|
|
prompt> string(1) "a"
|
|
string(1) "b"
|
|
|
|
prompt> [Registered flush]
|
|
prompt>
|
|
prompt> Done
|
|
[Script ended normally]
|
|
prompt>
|