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

1.1       misho       1: --TEST--
                      2: Testing user-defined function falling out of an If into another
                      3: --FILE--
                      4: <?php
                      5: $a = 1;
                      6: function Test ($a) {
                      7:        if ($a<3) {
                      8:                return(3);
                      9:        }
                     10: }
                     11: 
                     12: if ($a < Test($a)) {
                     13:        echo "$a\n";
                     14:        $a++;
                     15: }
                     16: ?>
                     17: --EXPECT--
                     18: 1

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