1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 00:32:23 +01:00
Files
archived-php-src/Zend/tests/errmsg_024.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00: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