blob: 2d266dd1ec16a6da605c95796380bc8c42c985fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--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 test has not been applied, because there are collisions with other trait methods on bar in %s on line %d
|