xref: /PHP-7.1/tests/lang/type_hints_003.phpt (revision 113213f0)
1--TEST--
2ZE2 type
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--
13Fatal error: Default value for parameters with a class type can only be NULL in %stype_hints_003.php on line 3
14