1.2.19. test/regress/rt-1.01.19

self-tail rec test (inspect output) (requires --inline atm)
     1: #line 786 "./lpsrc/flx_regress.pak"
     2: //Check recursion
     3: #line 786 "./lpsrc/flx_regress.pak"
     4: //Check tail call optimisation
Start felix section to test/regress/rt-1.01.19-0.flx[1 /1 ]
     5: #import <flx.flxh>
     6: fun g(x:int):int = {
     7:   if x == 0 goto endoff;
     8:   return g(x-1);
     9: endoff:>
    10:   return 1;
    11: }
    12: 
    13: print (g 10); endl;
End felix section to test/regress/rt-1.01.19-0.flx[1]
Start data section to test/regress/rt-1.01.19-0.expect[1 /1 ]
     1: 1
End data section to test/regress/rt-1.01.19-0.expect[1]