summaryrefslogtreecommitdiff
path: root/tests/classes/static_properties_undeclared_isset.phpt
blob: c8097f6e1083148931b0017c8d767b3b02627b23 (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));
?>
--EXPECT--
bool(false)