make `Switch` constructor more precise
[hiphop-php.git] / hphp / test / slow / concat / 1588.php
blob80ad8f578c93921be1fa7ca9b0b7e4518cae254a
1 <?hh
3 function foo() {
4 echo " FOO ";
5 return " foo ";
7 function bar() {
8 echo " hello " . foo() . "
9 ";
10 echo " hello " , foo() , "
14 <<__EntryPoint>>
15 function main_1588() {
16 bar();