summaryrefslogtreecommitdiff
path: root/ext/spl/tests/iterator_035.phpt
blob: fc0271e3811d71bcf0203018cb9dd4f94a39ea1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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: Cannot assign by reference to overloaded object in %s on line %d