mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
56f90492d6
For rationale, see https://github.com/php/php-src/pull/6787 Extensions migrated in this part: * bcmath * bz2 * calendar * com_dotnet * ctype Closes GH-6797.
13 lines
265 B
PHP
13 lines
265 B
PHP
--TEST--
|
|
Bug #62474 (com_event_sink crashes on certain arguments)
|
|
--EXTENSIONS--
|
|
com_dotnet
|
|
--FILE--
|
|
<?php
|
|
var_dump(com_event_sink(new variant, function() {}, array()));
|
|
var_dump(com_event_sink(new variant, new variant, 'a'));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(false)
|