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