mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
27 lines
406 B
PHP
27 lines
406 B
PHP
--TEST--
|
|
Bug #62358 (Segfault when using traits a lot)
|
|
--FILE--
|
|
<?php
|
|
|
|
trait T {
|
|
public function foo() {
|
|
echo "from T";
|
|
}
|
|
}
|
|
|
|
interface I {
|
|
public function foo();
|
|
}
|
|
|
|
abstract class A implements I{
|
|
use T;
|
|
}
|
|
|
|
class B extends A {
|
|
public function foo($var) {
|
|
}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Declaration of B::foo($var) must be compatible with A::foo() in %sbug62358.php on line 17
|