xref: /PHP-5.5/tests/lang/type_hints_003.phpt (revision 23b97b25)
1--TEST--
2ZE2 type hinting
3--SKIPIF--
4<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
5--FILE--
6<?php
7class T {
8	function f(P $p = 42) {
9	}
10}
11?>
12--EXPECTF--
13
14Fatal error: Default value for parameters with a class type hint can only be NULL in %stype_hints_003.php on line 3
15