mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
9 lines
177 B
PHP
9 lines
177 B
PHP
--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
|