ru_php/Zend/tests/traits/gh14009_003.phpt

20 lines
196 B
PHP

--TEST--
GH-14009: Traits inherit prototype
--FILE--
<?php
class A {
private function test() {}
}
trait T {
private function test() {}
}
class B extends A {
use T;
}
?>
--EXPECT--