Skip to content

Commit 0fa469a

Browse files
committed
Merge branch 'PHP-7.4'
2 parents 2505edb + 86d751f commit 0fa469a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Zend/tests/bug77922.phpt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
--TEST--
2+
Bug #77922: Double release of doc comment on inherited shadow property
3+
--FILE--
4+
<?php
5+
6+
class A {
7+
/** Foo */
8+
private $prop;
9+
}
10+
11+
class B extends A {
12+
}
13+
14+
class C extends B {
15+
}
16+
17+
?>
18+
===DONE===
19+
--EXPECT--
20+
===DONE===

0 commit comments

Comments
 (0)