1.2.15. test/regress/rt-1.01.15

call inlining
Start felix section to test/regress/rt-1.01.15-0.flx[1 /1 ]
     1: #line 655 "./lpsrc/flx_regress.pak"
     2: //Check inlining
     3: #import <flx.flxh>
     4: 
     5: val x = 1;
     6: if x == 1 then
     7: {
     8:   if x == 1
     9:   then { print "ONE\n"; }
    10:   else { print "IMPOSSIBLE"; }
    11:   endif
    12:   ;
    13: }
    14: else
    15: {
    16:   print "TWO\n";
    17: }
    18: endif
    19: ;
End felix section to test/regress/rt-1.01.15-0.flx[1]
Start data section to test/regress/rt-1.01.15-0.expect[1 /1 ]
     1: ONE
End data section to test/regress/rt-1.01.15-0.expect[1]