0
0
mirror of https://github.com/php/php-src.git synced 2024-12-18 14:30:35 +08:00
php-src/Zend/tests/bug70156.phpt
2020-02-03 22:52:20 +01:00

38 lines
585 B
PHP

--TEST--
Bug #70156 (Segfault in zend_find_alias_name)
--FILE--
<?php
trait T1 {
protected function foo1()
{
$this->bar();
}
}
trait T2 {
protected function foo2()
{
debug_print_backtrace();
}
}
class dummy {
use T1 {
foo1 as private;
}
use T2 {
foo2 as bar;
}
public function __construct()
{
$this->foo1();
}
}
new dummy();
?>
--EXPECTF--
#0 dummy->bar() called at [%sbug70156.php:%d]
#1 dummy->foo1() called at [%sbug70156.php:%d]
#2 dummy->__construct() called at [%sbug70156.php:%d]