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