php-src/tests/classes/static_properties_003_error4.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

21 lines
436 B
PHP

--TEST--
Attempting to access static properties using instance property syntax
--FILE--
<?php
class C {
protected static $y = 'C::$y';
}
$c = new C;
echo "\n--> Access non-visible static prop like instance prop:\n";
try {
$c->y =& $ref;
} catch (Error $e) {
echo $e, "\n";
}
?>
--EXPECTF--
--> Access non-visible static prop like instance prop:
Error: Cannot access protected property C::$y in %s:%d
Stack trace:
#0 {main}