Basic flow analysis on if statements
[hiphop-php.git] / hphp / test / slow / inout / undefined-method.php
blobaa7bade8ccea7e76cf5f1744946ae87b86d32e91
1 <?hh
2 // Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
4 class C {
5 public function f(inout int $x): void {
6 $x = 42;
10 function test(dynamic $c): void {
11 $x = 1;
12 $c->g(inout $x);
13 var_dump($x);
16 <<__EntryPoint>>
17 function main(): void {
18 test(new C());