global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / ns_use_func.php
blob58abfb8fb252ba551592dec32680024eeee80daf
1 <?hh
2 namespace A {
3 function f() { return 'a'; }
5 namespace B {
6 use A\f;
7 \var_dump(f());