1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/classes/static_properties_undeclared_assign.phpt
2020-07-10 21:05:28 +02:00

13 lines
234 B
PHP

--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