global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / crossUnitRefs.php
blob805b24f8f7cd47540df5274240514aa4a4c37070
1 <?hh
3 include_once "crossUnitRefsInc.php";
6 class A {
7 public $foo;
8 public function f() {
9 inOtherUnit($this->foo, array());
13 function main() {
14 $a = new A();
15 $a->foo = 12;
16 $a->f();
18 inOtherUnit(1, 2);
21 main();