Updating submodules
[hiphop-php.git] / hphp / test / slow / inout / bad-arg-pipe.php
blob842303c76fd622525acb973d3e003de8a486dca3
1 <?hh
3 class C {
4 public static function f(inout mixed $x) :mixed{
5 var_dump($x);
7 public function g() :mixed{
8 1 |> C::f(inout $$);
12 <<__EntryPoint>>
13 function main():mixed{
14 (new C)->g();