13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
|
|
--TEST--
|
||
|
|
ZE2 An interface method cannot be final
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
class if_a {
|
||
|
|
abstract final function err();
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
Fatal error: Cannot use the final modifier on an abstract method in %s on line %d
|