blob: b3adc2b09fd774815df48917f69a27738f8f9c3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
Using clone statement on undefined variable
--FILE--
<?php
$a = clone $b;
?>
--EXPECTF--
Notice: Undefined variable: b in %s on line %d
Fatal error: Uncaught EngineException: __clone method called on non-object in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d
|