summaryrefslogtreecommitdiff
path: root/Zend/tests/bug34358.phpt
blob: b9c6565f51dbc9fe68bb7e5ff3d59c7b0d1883ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Bug #34358 (Fatal error: Cannot re-assign $this(again))
--FILE--
<?php
class foo {
  function bar() {
    $ref = &$this;
  }
}
$x = new foo();
$x->bar();
echo "ok\n";
?>
--EXPECT--
ok