Basic flow analysis on if statements
[hiphop-php.git] / hphp / test / slow / inout / bad-parent-5.php
blob7e78ca8272821d3f03967da733e5734c8bc531aa
1 <?hh
3 class P {
4 function foo(inout $x) {}
7 class C extends P {
8 function foo() {}
11 <<__EntryPoint>>
12 function main(): void {
13 echo "Done.\n";