1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/traits/error_014.phpt
2020-02-03 22:52:20 +01:00

24 lines
357 B
PHP

--TEST--
Trying to override final method
--FILE--
<?php
trait foo {
public function test() { return 3; }
}
class baz {
final public function test() { return 4; }
}
class bar extends baz {
use foo { test as public; }
}
$x = new bar;
var_dump($x->test());
?>
--EXPECTF--
Fatal error: Cannot override final method baz::test() in %s on line %d