Updating submodules
[hiphop-php.git] / hphp / test / slow / inlining / 1843.php
blob6f2600a54e7f699cf6956407626e96f5a368cf6d
1 <?hh
3 function pid($x) {
4 var_dump($x);
5 return $x;
7 function f($x) {
8 return $x;
10 function ttest() {
11 return f(pid('arg1'),pid('arg2'));
14 <<__EntryPoint>>
15 function main_1843() {
16 ttest();