summaryrefslogtreecommitdiff
path: root/Zend/tests/bug68262.phpt
blob: 8d009f621e6783db980a2094131abaa652c92fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--TEST--
Bug #68262: Broken reference across cloned objects
--FILE--
<?php

class C {
    public $p;
}

$first = new C;
$first->p = 'init';

$clone = clone $first;
$ref =& $first->p;
unset($ref);

$clone = clone $first;
$clone->p = 'foo';

var_dump($first->p);

?>
--EXPECT--
string(4) "init"