363d1bb20f
This change is mostly for FB internal organizational reasons. Building is not effected beyond the fact that the target now lands in hphp/hhvm/hhvm rather than src/hhvm/hhvm.
14 linhas
120 B
PHP
14 linhas
120 B
PHP
<?php
|
|
|
|
class X {
|
|
private $foo;
|
|
function foo(&$b) {
|
|
$this->foo = $b;
|
|
}
|
|
}
|
|
|
|
$x = new X;
|
|
$t = null;
|
|
$x->foo($t);
|
|
|