1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/tests/classes/static_properties_003_error2.phpt
2015-05-17 17:31:43 -05:00

22 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