php-src/Zend/tests/bug66015.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

36 lines
477 B
PHP

--TEST--
Bug #66015 (wrong array indexing in class's static property)
--FILE--
<?php
class Test
{
const FIRST = 1;
const SECOND = 2;
const THIRD = 3;
protected static $array = [
self::FIRST => 'first',
'second',
'third',
4,
];
public function __construct()
{
var_export(self::$array);
}
}
$test = new Test();
?>
===DONE===
--EXPECT--
array (
1 => 'first',
2 => 'second',
3 => 'third',
4 => 4,
)
===DONE===