mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
10 lines
223 B
PHP
10 lines
223 B
PHP
--TEST--
|
|
Bug #72661 (ReflectionType::__toString crashes with iterable)
|
|
--FILE--
|
|
<?php
|
|
function test(iterable $arg) { }
|
|
|
|
var_dump((string)(new ReflectionParameter("test", 0))->getType());
|
|
?>
|
|
--EXPECT--
|
|
string(8) "iterable"
|