mirror of
https://github.com/php/php-src.git
synced 2025-01-02 08:54:04 +08:00
5441cd1f0d
patch by: laruence@php
10 lines
272 B
PHP
10 lines
272 B
PHP
--TEST--
|
|
Bug #55705 (Omitting a callable typehinted argument causes a segfault)
|
|
--FILE--
|
|
<?php
|
|
function f(callable $c) {}
|
|
f();
|
|
?>
|
|
--EXPECTF--
|
|
Catchable fatal error: Argument 1 passed to f() must be callable, none given, called in %s on line 3 and defined in %s on line %d
|