summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_024.phpt
blob: 011e6fdea9a73d6fd0af47f60456bb09bf6d6702 (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