mirror of
https://github.com/php/php-src.git
synced 2024-12-17 13:59:28 +08:00
15 lines
229 B
PHP
15 lines
229 B
PHP
--TEST--
|
|
using multiple access modifiers (final methods)
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
final final function foo() {
|
|
}
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Multiple final modifiers are not allowed in %s on line %d
|