mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
10 lines
201 B
PHP
10 lines
201 B
PHP
--TEST--
|
|
Assigning a non-existent static property by reference
|
|
--FILE--
|
|
<?php
|
|
Class C {}
|
|
$a = 'foo';
|
|
C::$p =& $a;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Access to undeclared static property: C::$p in %s on line 4
|