php-src/Zend/tests/bug70156.phpt

38 lines
516 B
Plaintext
Raw Normal View History

--TEST--
Bug #70156 (Segfault in zend_find_alias_name)
--FILE--
<?php
trait T1 {
2020-02-03 21:52:20 +00:00
protected function foo1()
{
$this->bar();
}
}
trait T2 {
2020-02-03 21:52:20 +00:00
protected function foo2()
{
debug_print_backtrace();
}
}
class dummy {
2020-02-03 21:52:20 +00:00
use T1 {
foo1 as private;
}
use T2 {
foo2 as bar;
}
public function __construct()
{
$this->foo1();
}
}
new dummy();
?>
--EXPECTF--
#0 %s(%d): dummy->bar()
#1 %s(%d): dummy->foo1()
#2 %s(%d): dummy->__construct()