scalar_float_with_invalid_default.phpt   [plain text]


--TEST--
Float type should not allow invalid types as default
--FILE--
<?php

function test(float $arg = true)
{
    var_dump($arg);
}

test();

?>
--EXPECTF--

Fatal error: Default value for parameters with a float type can only be float, integer, or NULL in %s on line %d