php-src/Zend/tests/bug37707.phpt

12 lines
151 B
PHP
Executable File

--TEST--
Bug #37707 (clone without assigning leaks memory)
--FILE--
<?php
class testme {}
clone new testme();
echo "NO LEAK\n";
?>
--EXPECT--
NO LEAK