27 lines
421 B
PHP
27 lines
421 B
PHP
--TEST--
|
|
Testing trait collisions
|
|
--FILE--
|
|
<?php
|
|
|
|
trait foo {
|
|
public function test() { return 3; }
|
|
}
|
|
trait c {
|
|
public function test() { return 2; }
|
|
}
|
|
|
|
trait b {
|
|
public function test() { return 1; }
|
|
}
|
|
|
|
class bar {
|
|
use foo, c, b;
|
|
}
|
|
|
|
$x = new bar;
|
|
var_dump($x->test());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Trait method c::test has not been applied as bar::test, because of collision with foo::test in %s on line %d
|