1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/objects_030.phpt
2015-05-17 17:31:43 -05:00

31 lines
462 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: Uncaught Error: Access to undeclared static property: bar::$f in %s:%d
Stack trace:
#0 %s(%d): foo->__construct()
#1 {main}
thrown in %s on line %d