php-src/Zend/tests/access_modifiers_013.phpt

13 lines
238 B
Plaintext
Raw Normal View History

--TEST--
Prevent abstract and final in the same class declaration
--FILE--
<?php
final abstract class C {
2020-02-03 21:52:20 +00:00
private function priv() { }
}
?>
--EXPECTF--
Fatal error: Cannot use the final modifier on an abstract class in %s on line %d