Arquivos
hhvm/hphp/test/vm/impl_abstract_dv_i_Int.php
T
smith 0562656c5b Rename some tests to avoid collisions on case-insensitive filesystems.
Avoids headaches if you clone our repo or the OSS repo on a Mac.
2013-03-05 22:28:41 -08:00

5 linhas
145 B
PHP

<?php
abstract class A { abstract public function a(int $a1 = null); }
class B extends A { public function a(Int $a1 = null) {} }