global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / BindS_twice.php
blobb4d6e7c730fc8c995b1b650e65b8159659eed1ee
1 <?hh
3 class C {
4 public static $blar;
5 public static $blor;
7 public static function buh(&$thinger = null) {
8 self::$blar = &$thinger;
9 self::$blor = &self::$blar;
13 function main() {
14 C::buh();
15 var_dump(C::$blar);
16 var_dump(C::$blor);
19 main();