12345678910111213141516171819 |
- --TEST--
- ZE2 A method cannot be redeclared abstract
- --FILE--
- <?php
- class pass
- }
- class fail extends pass
- echo "Done\n";
- ?>
- --EXPECTF--
- Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (fail::show) in %sabstract_redeclare.php on line %d
|