summaryrefslogtreecommitdiff
path: root/tests/classes/static_properties_undeclared_assign.phpt
blob: 3494fbd917f3d551200b1085318f6f5f215f05e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Assigning to a non-existent static property
--FILE--
<?php
Class C {}
C::$p = 1;
?>
--EXPECTF--
Fatal error: Uncaught Error: Access to undeclared static property C::$p in %s:%d
Stack trace:
#0 {main}
  thrown in %s on line 3