global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / interface8.php
blob1da02a2d31c43b5207dedeb7bca61bd0d99c8e30
1 <?hh
3 print "Test begin\n";
5 interface A {
6 public function a(array $a = null);
8 class B implements A {
9 public function a($a) {}
12 print "Test end\n";