global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / interface7.php
blobda2ef83c66919fe459807a338fa986a7bd82f9e9
1 <?hh
3 print "Test begin\n";
5 interface I {
6 public function foo($x, $y);
8 class C implements I {
9 public function foo($x) {
10 echo 'Hello ' . $x . "\n";
13 $o = new C;
14 $o->foo("5");
16 print "Test end\n";