mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
14 lines
258 B
PHP
14 lines
258 B
PHP
--TEST--
|
|
Assigning a non-existent static property by reference
|
|
--FILE--
|
|
<?php
|
|
Class C {}
|
|
$a = 'foo';
|
|
C::$p =& $a;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Access to undeclared static property: C::$p in %s:4
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line 4
|