Handle this typehints
[hiphop-php.git] / hphp / test / quick / setop-refleak.php
blobfe4846309c3516858a471423ff072bf58bbcfa6f
1 <?php
3 class Dtor {
4 public function __destruct() { echo "dtor\n"; }
7 class Foo { public $bug; };
9 function main() {
10 $x = new Foo;
11 $x->bug = new Dtor;
12 $x->bug += 12;
13 var_dump($x);
16 main();
17 echo "done\n";