php-src/Zend/tests/traits/error_014.phpt
2010-05-06 19:21:11 +00:00

24 lines
348 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