php-src/Zend/tests/bug33996.phpt

30 lines
630 B
Plaintext
Raw Normal View History

--TEST--
Bug #33996 (No information given for fatal error on passing invalid value to typed argument)
--INI--
2005-09-19 07:23:47 +00:00
error_reporting=8191
--FILE--
<?php
class Foo
{
// nothing
}
function FooTest(Foo $foo)
{
echo "Hello!";
}
function NormalTest($a)
{
echo "Hi!";
}
NormalTest();
FooTest();
FooTest(new Foo());
?>
--EXPECTF--
2006-05-21 11:23:35 +00:00
Warning: Missing argument 1 for NormalTest(), called in %sbug33996.php on line %d and defined in %sbug33996.php on line %d
Hi!
Catchable fatal error: Argument 1 passed to FooTest() must be an instance of Foo, none given, called in %sbug33996.php on line %d and defined in %sbug33996.php on line %d