bug55305.phpt 271 B

12345678910111213141516
  1. --TEST--
  2. Bug #55305 (ref lost: 1st ref instantiated in class def, 2nd ref made w/o instantiating)
  3. --FILE--
  4. <?php
  5. class Foo {
  6. var $foo = "test";
  7. }
  8. $f = new Foo();
  9. $f->bar =& $f->foo;
  10. var_dump($f->foo);
  11. var_dump($f->bar);
  12. ?>
  13. --EXPECT--
  14. string(4) "test"
  15. string(4) "test"