Updating submodules
[hiphop-php.git] / hphp / test / slow / new_object_expression / 782.php
blob564c94c4e3e04e4ebd2def727467cfd63b169dcd
1 <?hh
3 class foo {
4 static function ioo($y, inout $x) {
5 return new self(1);
7 function __construct($a, $b) {
10 function t() {
11 $x = 1;
12 $y = null;
13 foo::ioo($x, inout $y);
16 <<__EntryPoint>>
17 function main_782() {
18 t();