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