1.2.18. test/regress/rt-1.01.18

non-self-tail rec test (inspect output) (requires --inline atm)
     1: #line 760 "./lpsrc/flx_regress.pak"
     2: //Check recursion
     3: #line 760 "./lpsrc/flx_regress.pak"
     4: //Check tail call optimisation
Start felix section to test/regress/rt-1.01.18-0.flx[1 /1 ]
     5: #import <flx.flxh>
     6: var x = 4;
     7: proc recur2 ()
     8: {
     9:   if x > 0 then
    10:   {
    11:     print x; endl;
    12:     --x;
    13:     recur2();
    14:   }
    15:   else {} endif;
    16: }
    17: recur2();
End felix section to test/regress/rt-1.01.18-0.flx[1]
Start data section to test/regress/rt-1.01.18-0.expect[1 /1 ]
     1: 4
     2: 3
     3: 2
     4: 1
End data section to test/regress/rt-1.01.18-0.expect[1]