summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/error_015.phpt
blob: c1309bd71354dff0e559307dcc5484f759cd35a1 (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--
Trying to add an alias to a trait method where there is another with same name.
Should warn about the conflict.
--FILE--
<?php

trait foo {
    public function test() { return 3; }
}

trait baz {
    public function test() { return 4; }
}

class bar {
    use foo, baz {
        baz::test as zzz;
    }
}

$x = new bar;
var_dump($x->test());

?>
--EXPECTF--
Fatal error: Trait method baz::test has not been applied as bar::test, because of collision with foo::test in %s on line %d