mirror of
https://github.com/php/php-src.git
synced 2024-12-18 22:41:20 +08:00
157a4e289a
then inside error messages).
13 lines
284 B
PHP
Executable File
13 lines
284 B
PHP
Executable File
--TEST--
|
|
Bug #27145 (Errors messages print unmangled PPP property names)
|
|
--FILE--
|
|
<?php
|
|
class a {
|
|
protected static $v = "aa";
|
|
}
|
|
class b extends a {
|
|
protected static $v = "bb";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot redeclare property static protected a::$v in class b in %s on line %d
|