summaryrefslogtreecommitdiff
path: root/tests/classes/static_properties_undeclared_assignInc.phpt
blob: 9680bf5f15bf44cdbf49e18c78619d25e4ca1f52 (plain)
1
2
3
4
5
6
7
8
9
--TEST--
Assigning & incrementing 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