TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

27 lines
486 B

<?php
class NestedParentBase {}
trait NestedParentRequirement
{
abstract public function copy(parent $value): parent;
}
trait NestedParentImplementation
{
public function copy(NestedParentBase $value): NestedParentBase
{
return $value;
}
}
trait InvalidNestedParentComposition
{
use NestedParentRequirement, NestedParentImplementation;
}
class NestedParentConsumer extends NestedParentBase
{
use InvalidNestedParentComposition;
}
function main() {}