mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
20 lines
439 B
PHP
20 lines
439 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";
|
|
echo $c->y;
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
--> Access non-visible static prop like instance prop:
|
|
|
|
Fatal error: Uncaught Error: Cannot access protected property C::$y in %s:8
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line 8
|