21 lines
317 B
Plaintext
21 lines
317 B
Plaintext
|
|
--TEST--
|
||
|
|
ZE2 A final class cannot be inherited
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
final class base {
|
||
|
|
function show() {
|
||
|
|
echo "base\n";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
$t = new base();
|
||
|
|
|
||
|
|
class derived extends base {
|
||
|
|
}
|
||
|
|
|
||
|
|
echo "Done\n"; // shouldn't be displayed
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
Fatal error: Class derived cannot extend final class base in %s on line %d
|