Your IP : 216.73.216.48


Current Path : /hdd/hdd12/install/php/php-7.4.32/Zend/tests/
Upload File :
Current File : //hdd/hdd12/install/php/php-7.4.32/Zend/tests/bug69420.phpt

--TEST--
Bug #69420 (Invalid read in zend_std_get_method)
--FILE--
<?php

trait T {
	protected function test() {
		echo "okey";
	}
}


class A {
	protected function test() {
	}
}

class B extends A {
	use T;
	public function foo() {
		$this->test();
	}
}


$b = new B();
$b->foo();
?>
--EXPECT--
okey