1--TEST--
2Attempting to access static properties using instance property syntax
3--FILE--
4<?php
5class C {
6    protected static $y = 'C::$y';
7}
8$c = new C;
9
10echo "\n--> Access non-visible static prop like instance prop:\n";
11try {
12    $c->y =& $ref;
13} catch (Error $e) {
14    echo $e, "\n";
15}
16?>
17==Done==
18--EXPECTF--
19--> Access non-visible static prop like instance prop:
20Error: Cannot access protected property C::$y in %s:%d
21Stack trace:
22#0 {main}
23==Done==
24