global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / BindS.php
blobb16cbc579942261e6b30c87488df702b5f4aaaf2
1 <?hh
3 class Foo {
4 public static $x;
7 function f() {
8 $x = 2;
9 Foo::$x = &$x;
11 f();
12 echo "done\n";