php-src/Zend/tests/traits/bugs/abstract-methods04.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

36 lines
557 B
PHP

--TEST--
Abstract Trait Methods should behave like common abstract methods and
implementstion may be provided by other traits. Sorting order shouldn't influence result.
--FILE--
<?php
error_reporting(E_ALL);
trait THello {
public abstract function hello();
}
trait THelloImpl {
public function hello() {
echo 'Hello';
}
}
class TraitsTest1 {
use THello;
use THelloImpl;
}
$test = new TraitsTest1();
$test->hello();
class TraitsTest2 {
use THelloImpl;
use THello;
}
$test = new TraitsTest2();
$test->hello();
?>
--EXPECTF--
HelloHello