php-src/tests/classes/static_properties_undeclared_assignRef.phpt

14 lines
294 B
Plaintext
Raw Normal View History

2009-06-17 10:38:24 +00:00
--TEST--
Assigning a non-existent static property by reference
--FILE--
<?php
Class C {}
$a = 'foo';
C::$p =& $a;
?>
--EXPECTF--
Fatal error: Uncaught exception 'EngineException' with message 'Access to undeclared static property: C::$p' in %s:4
Stack trace:
#0 {main}
thrown in %s on line 4