mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
25 lines
370 B
PHP
25 lines
370 B
PHP
--TEST--
|
|
Bug #45742 Wrong class array inpretetion using constant indexes
|
|
--FILE--
|
|
<?php
|
|
class Constants {
|
|
// Needs to be equal
|
|
const A = 1;
|
|
const B = 1;
|
|
}
|
|
|
|
class ArrayProperty {
|
|
public static $array = array(
|
|
Constants::A => 23,
|
|
Constants::B => 42,
|
|
);
|
|
}
|
|
|
|
var_dump( ArrayProperty::$array );
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[1]=>
|
|
int(42)
|
|
}
|