php-src/Zend/tests/traits/static_003.phpt
Stefan Marr 6ad5c889a1 Added tests to for static support of traits.
# This was not tested and documented yet.
# Updated documentation in the RFC http://wiki.php.net/rfc/horizontalreuse
2010-11-17 23:05:20 +00:00

27 lines
384 B
PHP

--TEST--
Traits with late static bindings.
--CREDITS--
Simas Toleikis simast@gmail.com
--FILE--
<?php
trait TestTrait {
public static function test() {
return static::$test;
}
}
class A {
use TestTrait;
protected static $test = "Test A";
}
class B extends A {
protected static $test = "Test B";
}
echo B::test();
?>
--EXPECT--
Test B