xref: /PHP-7.4/Zend/tests/errmsg_024.phpt (revision 782352c5)
1--TEST--
2No more errmsg: can now change initial value of property
3--FILE--
4<?php
5
6class test1 {
7	static protected $var = 1;
8}
9
10class test extends test1 {
11	static $var = 10;
12}
13
14echo "Done\n";
15?>
16--EXPECT--
17Done
18