1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/opcache/tests/bug74019.phpt
2020-02-03 22:52:20 +01:00

26 lines
352 B
PHP

--TEST--
Bug #74019 (Segfault with list)
--INI--
opcache.enable=1
opcache.enable_cli=1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class A {
public function seg() {
list($a, $b) = A::CONSTS;
var_dump($a, $b);
return;
}
const CONSTS = [1, 2];
}
$a = new A;
$a->seg();
?>
--EXPECT--
int(1)
int(2)