mirror of
https://github.com/php/php-src.git
synced 2024-12-17 05:50:14 +08:00
21 lines
225 B
Plaintext
21 lines
225 B
Plaintext
|
--TEST--
|
||
|
Bug #77922: Double release of doc comment on inherited shadow property
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class A {
|
||
|
/** Foo */
|
||
|
private $prop;
|
||
|
}
|
||
|
|
||
|
class B extends A {
|
||
|
}
|
||
|
|
||
|
class C extends B {
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
===DONE===
|
||
|
--EXPECT--
|
||
|
===DONE===
|