<?php // Reduced with command line 'test/framework/reduce -v test/subjects/codegen/foreach_key_val.php' $a = array ('Z'); foreach ($a as $key => &$val) { } foreach ($a as $key => $val) { } ?>