php-src/tests/classes/static_properties_undeclared_inc.phpt
2020-07-10 21:05:28 +02:00

13 lines
232 B
PHP

--TEST--
Incrementing a non-existent static property
--FILE--
<?php
Class C {}
C::$p++;
?>
--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