summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_024.phpt
blob: 275ed47a996d3b7c5349f9a946e7350cd7ec4eef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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