1--TEST-- 2Reading a non-existent static property 3--FILE-- 4<?php 5Class C {} 6echo C::$p; 7?> 8--EXPECTF-- 9Fatal error: Uncaught Error: Access to undeclared static property: C::$p in %s:3 10Stack trace: 11#0 {main} 12 thrown in %s on line 3 13