php-src/Zend/tests/traits/conflict003.phpt
Stefan Marr b501570ab0 Added traits test cases. No engine changes for now. [TRAITS]
#Getting accustomed to the infrastructure.
#Any comments are welcome, especially with regard to syntax and keywords.
2010-04-15 21:39:20 +00:00

33 lines
660 B
PHP

--TEST--
Two methods resulting in a conflict, should be reported both.
--FILE--
<?php
error_reporting(E_ALL);
trait A {
public function smallTalk() {
echo 'a';
}
public function bigTalk() {
echo 'A';
}
}
trait B {
public function smallTalk() {
echo 'b';
}
public function bigTalk() {
echo 'B';
}
}
class Talker {
use A, B;
}
?>
--EXPECTF--
Warning: Trait method smallTalk has not been applied, because there are collisions with other trait methods on Talker in %s on line %d
Warning: Trait method bigTalk has not been applied, because there are collisions with other trait methods on Talker in %s on line %d