summaryrefslogtreecommitdiff
path: root/tests/lang/bug19943.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug19943.phpt')
-rw-r--r--tests/lang/bug19943.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/bug19943.phpt b/tests/lang/bug19943.phpt
index 3be703fb1d..294a320bf7 100644
--- a/tests/lang/bug19943.phpt
+++ b/tests/lang/bug19943.phpt
@@ -12,7 +12,7 @@ Bug #19943 (memleaks)
echo $ar[$count]." -- ".$ar[$count]['idx']."\n";
}
$a = "0123456789";
- $a[9] = $a{0};
+ $a[9] = $a[0];
var_dump($a);
?>
--EXPECT--