php-src/tests/lang/type_hints_003.phpt

15 lines
321 B
Plaintext
Raw Normal View History

2006-05-10 22:38:35 +00:00
--TEST--
ZE2 type hinting
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
class T {
function f(P $p = 42) {
}
}
?>
--EXPECTF--
Fatal error: Default value for parameters with a class type hint can only be NULL in %stype_hints_003.php on line 3