Changeset 545

Show
Ignore:
Timestamp:
06/09/08 11:09:58 (7 months ago)
Author:
weyrick
Message:

test for r544

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pcc-testsuite/re-tests/main/ref.phpt

    r459 r545  
    1919echo "$foo\n"; 
    2020 
     21// test a return by ref function, which has no explicit return 
     22function &retbyref() { 
     23    $a = 5; 
     24} 
     25retbyref(); 
     26 
    2127?> 
    2228--EXPECT--