summaryrefslogtreecommitdiff
path: root/Zend/tests/bug39304_2_4.phpt
blob: da94183f619da41130e992fe6221c81f7452aedb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #39304 (Segmentation fault with list unpacking of string offset)
--SKIPIF--
<?php if (version_compare(zend_version(), '2.4.0', '<')) die('skip ZendEngine 2.4 needed'); ?>
--FILE--
<?php
  $s = "";
  list($a, $b) = $s[0];
  var_dump($a,$b);
?>
--EXPECTF--
Notice: Uninitialized string offset: 0 in %sbug39304_2_4.php on line %d
NULL
NULL