global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / redeclared_function.php
blob24d629eea91b4df41f5131885ac0062e4251e5e0
1 <?hh
3 echo "declaring f()\n";
4 function f() { echo "first def!\n"; }
5 echo "re-declaring f()\n";
6 function f() { echo "second def!\n"; }
7 f();