Annotation of embedaddon/php/tests/lang/type_hints_003.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: ZE2 type hinting
                      3: --SKIPIF--
                      4: <?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
                      5: --FILE--
                      6: <?php
                      7: class T {
                      8:        function f(P $p = 42) {
                      9:        }
                     10: }
                     11: ?>
                     12: --EXPECTF--
                     13: 
                     14: Fatal error: Default value for parameters with a class type hint can only be NULL in %stype_hints_003.php on line 3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>