summaryrefslogtreecommitdiff
path: root/tests/classes/static_properties_undeclared_read.phpt
blob: 715b41e78df86dbb8ff953a3d853ddfbd3f141bb (plain)
1
2
3
4
5
6
7
8
9
--TEST--
Reading a non-existent static property
--FILE--
<?php
Class C {}
echo C::$p;
?>
--EXPECTF--
Fatal error: Access to undeclared static property: C::$p in %s on line 3