mirror of
https://github.com/php/php-src.git
synced 2024-12-16 05:15:03 +08:00
d30cd7d7e7
Closes GH-5590
22 lines
333 B
PHP
22 lines
333 B
PHP
--TEST--
|
|
ZE2 factory and singleton, test 7
|
|
--FILE--
|
|
<?php
|
|
class test {
|
|
|
|
protected function __clone() {
|
|
}
|
|
}
|
|
|
|
$obj = new test;
|
|
$clone = clone $obj;
|
|
$obj = NULL;
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Call to protected test::__clone() from global scope in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|