1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/tests/classes/abstract_inherit.phpt
2017-01-30 22:50:25 +01:00

24 lines
391 B
PHP

--TEST--
ZE2 A class that inherits an abstract method is abstract
--FILE--
<?php
abstract class pass {
abstract function show();
}
abstract class fail extends pass {
}
$t = new fail();
$t = new pass();
echo "Done\n"; // Shouldn't be displayed
?>
--EXPECTF--
Fatal error: Uncaught Error: Cannot instantiate abstract class fail in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d