mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
10 lines
235 B
PHP
10 lines
235 B
PHP
--TEST--
|
|
Bug #73973 debug_zval_dump() assertion error for resource consts with --enable-debug
|
|
--FILE--
|
|
<?php
|
|
define('myerr', fopen('php://stderr', 'w'));
|
|
debug_zval_dump(myerr);
|
|
?>
|
|
--EXPECTF--
|
|
resource(5) of type (stream) refcount(%d)
|