blob: 3a00124836d0851f04b20c46dee432b6694061c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--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
|