blob: 9c9a286e2f1326e70182041c20b7c842a220e2bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--TEST--
Bug #74456 (Segmentation error while running a script in CLI mode)
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function small_numbers() {
return [0,1,2];
}
list ($zero, $one, $two) = small_numbers();
var_dump($zero, $one, $two);
?>
--EXPECT--
int(0)
int(1)
int(2)
|