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