php-src/ext/spl/tests/iterator_035.phpt

16 lines
252 B
Plaintext
Raw Normal View History

--TEST--
SPL: ArrayIterator and values assigned by reference
--FILE--
<?php
$tmp = 1;
$a = new ArrayIterator();
$a[] = $tmp;
$a[] = &$tmp;
echo "Done\n";
?>
--EXPECTF--
Fatal error: Cannot assign by reference to overloaded object in %s on line %d