mirror of
https://github.com/php/php-src.git
synced 2024-12-18 22:41:20 +08:00
36 lines
610 B
PHP
36 lines
610 B
PHP
--TEST--
|
|
Bug #55424 (Method got missing from class when a trait defined an abstract method to express a requirement)
|
|
--FILE--
|
|
<?php
|
|
|
|
trait ATrait
|
|
{
|
|
function setRequired()
|
|
{
|
|
$this->setAttribute();
|
|
}
|
|
|
|
abstract function setAttribute();
|
|
}
|
|
|
|
class Base
|
|
{
|
|
function setAttribute() { }
|
|
}
|
|
|
|
class MyClass extends Base
|
|
{
|
|
use ATrait;
|
|
}
|
|
|
|
$i = new Base();
|
|
$i->setAttribute();
|
|
|
|
$t = new MyClass();
|
|
/* setAttribute used to disappear for no good reason. */
|
|
$t->setRequired();
|
|
echo 'DONE';
|
|
?>
|
|
--EXPECT--
|
|
DONE
|