503f75d08b
These names don't make sense now that we run both suites the same way.
14 linhas
163 B
PHP
14 linhas
163 B
PHP
<?php
|
|
|
|
echo "Test begin\n";
|
|
function f() {
|
|
$rv = array('a' => 1);
|
|
foreach ($rv as $key => &$splitkeys) {
|
|
}
|
|
return $rv;
|
|
}
|
|
f();
|
|
f();
|
|
f();
|
|
echo "Test end\n";
|