1--TEST-- 2Issetting a non-existent static property 3--FILE-- 4<?php 5Class C {} 6var_dump(isset(C::$p)); 7?> 8--EXPECTF-- 9bool(false) 10