mirror of
https://github.com/php/php-src.git
synced 2024-12-13 20:05:26 +08:00
27 lines
375 B
PHP
27 lines
375 B
PHP
--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
|