summaryrefslogtreecommitdiff
path: root/tests/classes/static_properties_undeclared_isset.phpt
blob: 83fb7711c54a0a45aea8f3edfcdd628a1fc4ac16 (plain)
1
2
3
4
5
6
7
8
9
--TEST--
Issetting a non-existent static property
--FILE--
<?php
Class C {}
var_dump(isset(C::$p));
?>
--EXPECTF--
bool(false)