php-src/Zend/tests/const_array_with_resource_key.phpt

16 lines
251 B
Plaintext
Raw Normal View History

--TEST--
Constexpr arrays should be able to handle resource keys
--FILE--
<?php
const FOO = [STDIN => 42];
var_dump(FOO);
?>
--EXPECTF--
2016-09-28 21:12:45 +00:00
Notice: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
array(1) {
[%d]=>
int(42)
}