You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
289 B

--TEST--
errmsg: access level must be the same or weaker
--FILE--
<?php
class test1 {
protected $var;
}
class test extends test1 {
private $var;
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Access level to test::$var must be protected (as in class test1) or weaker in %s on line %d