mirror of
https://github.com/php/php-src.git
synced 2024-12-19 06:50:17 +08:00
16 lines
216 B
PHP
16 lines
216 B
PHP
--TEST--
|
|
Bug #37707 (clone without assigning leaks memory)
|
|
--FILE--
|
|
<?php
|
|
class testme {
|
|
function __clone() {
|
|
echo "clonned\n";
|
|
}
|
|
}
|
|
clone new testme();
|
|
echo "NO LEAK\n";
|
|
?>
|
|
--EXPECT--
|
|
clonned
|
|
NO LEAK
|