mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
14 lines
287 B
PHP
14 lines
287 B
PHP
--TEST--
|
|
Bug #36071 (Engine Crash related with 'clone')
|
|
--INI--
|
|
error_reporting=4095
|
|
--FILE--
|
|
<?php
|
|
$a = clone 0;
|
|
$a[0]->b = 0;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: __clone method called on non-object in %sbug36071.php:2
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sbug36071.php on line 2
|