global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / closure_use_immediately.php
blob6aa5f1633ae37a93544c956948e64e160cc2a6b3
1 <?hh
3 class A {}
5 function a() {
6 $b = new A;
7 $c = function() use ($b) {
8 return $b;
9 };
10 return $c();
13 var_dump(a());