summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_024.phpt
blob: abfb2b9c23767e8562c93bc8ea02695884f6d1b6 (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";
?>
--EXPECTF--
Done