Move experimental/symbolizer/{tool,test} to debugging/symbolizer
[hiphop-php.git] / hphp / test / slow / inlining / 1843.php
blob6ea2314f458d236a38d5948da75ff034eb9f1df7
1 <?hh
3 function pid($x) :mixed{
4 var_dump($x);
5 return $x;
7 function f($x) :mixed{
8 return $x;
10 function ttest() :mixed{
11 return f(pid('arg1'),pid('arg2'));
14 <<__EntryPoint>>
15 function main_1843() :mixed{
16 ttest();