mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
21 lines
436 B
PHP
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}
|