php-src/Zend/tests/traits/conflict001.phpt

25 lines
414 B
Plaintext
Raw Normal View History

--TEST--
Method conflict in traits
--FILE--
<?php
error_reporting(E_ALL);
trait THello1 {
private function hello() {
echo 'Hello';
}
}
trait THello2 {
private function hello() {
echo 'Hello';
}
}
class TraitsTest {
use THello1;
use THello2;
}
?>
--EXPECTF--
Warning: Trait method hello has not been applied, because there are collisions with other trait methods on TraitsTest in %s on line %d