php-src/Zend/tests/errmsg_024.phpt
2018-10-14 19:45:12 +02:00

18 lines
210 B
PHP

--TEST--
No more errmsg: can now change initial value of property
--FILE--
<?php
class test1 {
static protected $var = 1;
}
class test extends test1 {
static $var = 10;
}
echo "Done\n";
?>
--EXPECT--
Done