Handle this typehints
[hiphop-php.git] / hphp / test / quick / impl_abstract_dv_i_integer.php
blob73d12c5a5d8e04b6e4050ecc159923803b8f6438
1 <?hh
2 abstract class A { abstract public function a(int $a1 = null); }
3 class B extends A { public function a(integer $a1 = null) {} }