mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
e219ec144e
RFC: https://wiki.php.net/rfc/typed_properties_v2 This is a squash of PR #3734, which is a squash of PR #3313. Co-authored-by: Bob Weinand <bobwei9@hotmail.com> Co-authored-by: Joe Watkins <krakjoe@php.net> Co-authored-by: Dmitry Stogov <dmitry@zend.com>
21 lines
422 B
PHP
21 lines
422 B
PHP
--TEST--
|
|
SPL: ArrayIterator and values assigned by reference
|
|
--FILE--
|
|
<?php
|
|
|
|
$tmp = 1;
|
|
|
|
$a = new ArrayIterator();
|
|
$a[] = $tmp;
|
|
$a[] = &$tmp;
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Indirect modification of overloaded element of ArrayIterator has no effect in %s on line %d
|
|
|
|
Fatal error: Uncaught Error: Cannot assign by reference to an array dimension of an object in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|