summaryrefslogtreecommitdiff
path: root/tests/lang/type_hints_003.phpt
blob: d7f44eefffa5943cb855d980bb5124672aa3636f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
ZE2 type
--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 can only be NULL in %stype_hints_003.php on line 3