|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-02-04 21:11 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 19:00:01 2025 UTC |
Description: ------------ Object property name is not unmangled before printing in an compile error. Reproduce code: --------------- php -r 'class a { protected static $v = "aa";} class b extends a{ protected static $v="bb";}' Expected result: ---------------- PHP Fatal error: Cannot redeclare property static protected a::$v in class b in Command line code on line 1 Actual result: -------------- PHP Fatal error: Cannot redeclare property static protected a::$ in class b in Command line code on line 1