diff options
Diffstat (limited to 'Zend/tests/bug66252.phpt')
-rw-r--r-- | Zend/tests/bug66252.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/bug66252.phpt b/Zend/tests/bug66252.phpt index e692a8e706..93f6253a55 100644 --- a/Zend/tests/bug66252.phpt +++ b/Zend/tests/bug66252.phpt @@ -8,7 +8,7 @@ class A { class B extends A { const BHW = parent::HW . " extended by B"; } -const C = B::BHW; +const C = B::BHW; echo C, "\n"; --EXPECT-- this is A extended by B |