summaryrefslogtreecommitdiff
path: root/Zend/tests/bug36071.phpt
blob: 3b8e05dfab53218e3ff0ff5e9677d0276ffb6bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Bug #36071 (Engine Crash related with 'clone')
--INI--
error_reporting=4095
--FILE--
<?php
$a = clone 0;
$a[0]->b = 0;
echo "ok\n";
?>
--EXPECTF--
Warning: __clone method called on non-object in %sbug36071.php on line 2
ok