mirror of
https://github.com/php/php-src.git
synced 2026-03-29 03:32:20 +02:00
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
|