summaryrefslogtreecommitdiff
path: root/Zend/tests/bug66252.phpt
blob: e692a8e706dee32fd9a41726549ded01e7d23621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #66252 (Problems in AST evaluation invalidating valid parent:: reference)
--FILE--
<?php
class A {
	const HW = "this is A";
}
class B extends A {
	const BHW = parent::HW . " extended by B";
}
const C = B::BHW; 
echo C, "\n";
--EXPECT--
this is A extended by B