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.
 
 
 
 
 
 

26 lines
375 B

--TEST--
Trying to access undeclared parent property
--FILE--
<?php
class bar {
public function __set($a, $b) {
print "hello\n";
}
}
class foo extends bar {
public function __construct() {
parent::$f = 1;
}
public function __set($a, $b) {
print "foo\n";
}
}
new foo;
?>
--EXPECTF--
Fatal error: Access to undeclared static property: bar::$f in %s on line %d