summaryrefslogtreecommitdiff
path: root/Zend/tests/bug66252.phpt
blob: 3816ebda0967f69d831ceb7044d09f7873d97e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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