php-src/Zend/tests/objects_017.phpt

19 lines
254 B
Plaintext
Raw Normal View History

2008-03-11 15:21:38 +00:00
--TEST--
Testing visibility of object returned by function
--FILE--
<?php
class foo {
private $test = 1;
}
function test() {
return new foo;
}
test()->test = 2;
?>
--EXPECTF--
Fatal error: Cannot access private property foo::$test in %s on line %d