]> granicus.if.org Git - php/commitdiff
Add new test
authorMarcus Boerger <helly@php.net>
Sat, 27 Mar 2004 15:49:23 +0000 (15:49 +0000)
committerMarcus Boerger <helly@php.net>
Sat, 27 Mar 2004 15:49:23 +0000 (15:49 +0000)
tests/classes/type_hinting_002.phpt [new file with mode: 0755]

diff --git a/tests/classes/type_hinting_002.phpt b/tests/classes/type_hinting_002.phpt
new file mode 100755 (executable)
index 0000000..4cb75b1
--- /dev/null
@@ -0,0 +1,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