summaryrefslogtreecommitdiff
path: root/tests/classes/type_hinting_002.phpt
blob: 7c685bfdba3e39aef3832f6c08e4906e84a8f7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--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--
Catchable fatal error: Argument 1 passed to Foo::a() must be an instance of NonExisting, instance of Foo given, called in %s on line %d and defined in %s on line %d