mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
19 lines
217 B
PHP
19 lines
217 B
PHP
--TEST--
|
|
Bug #70006 (cli - function with default arg = STDOUT crash output)
|
|
--SKIPIF--
|
|
<?php
|
|
include "skipif.inc";
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
function foo1($stream = STDOUT)
|
|
{
|
|
//do nothing
|
|
}
|
|
foo1();
|
|
?>
|
|
okey
|
|
--EXPECT--
|
|
okey
|