14 lines
253 B
Plaintext
14 lines
253 B
Plaintext
|
|
--TEST--
|
||
|
|
ZE2 A final method cannot be abstract
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
class fail {
|
||
|
|
abstract final function show();
|
||
|
|
}
|
||
|
|
|
||
|
|
echo "Done\n"; // Shouldn't be displayed
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
Fatal error: Cannot use the final modifier on an abstract method in %s on line %d
|