xref: /PHP-8.0/Zend/tests/errmsg_024.phpt (revision f8d79582)
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