xref: /php-src/tests/lang/017.phpt (revision f8d79582)
1--TEST--
2Testing user-defined function falling out of an If into another
3--FILE--
4<?php
5$a = 1;
6function Test ($a) {
7    if ($a<3) {
8        return(3);
9    }
10}
11
12if ($a < Test($a)) {
13    echo "$a\n";
14    $a++;
15}
16?>
17--EXPECT--
181
19