global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / redeclared_method2.php
blob9ecc10f2ab8b34bfedcc38263231e49638a08705
1 <?hh
2 interface I {
3 static function foo();
5 class C implements I {
6 function foo() { echo "foo\n"; }
8 $obj = new C;
9 $obj->foo();