16 lines
252 B
Plaintext
16 lines
252 B
Plaintext
|
|
--TEST--
|
||
|
|
Constexpr arrays should be able to handle resource keys
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
const FOO = [STDIN => 42];
|
||
|
|
var_dump(FOO);
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
Warning: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
|
||
|
|
array(1) {
|
||
|
|
[%d]=>
|
||
|
|
int(42)
|
||
|
|
}
|