summaryrefslogtreecommitdiff
path: root/tests/classes/type_hinting_002.phpt
blob: 4cb75b1b8f84a6952528e0af0c2beeadd4bdcb9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
ZE2 class type hinting non existing class
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php

class Foo {
	function a(NonExisting $foo) {}
}

$o = new Foo;
$o->a($o);
?>
--EXPECTF--

Fatal error: Class 'NonExisting' not found in %stype_hinting_002.php on line %d