1.2.30. test/regress/rt-1.01.30

Start felix section to test/regress/rt-1.01.30-0.flx[1 /1 ]
     1: #line 1156 "./lpsrc/flx_regress.pak"
     2: #import <flx.flxh>
     3: var z = 0;
     4: noinline proc f
     5:   (a:unit ->int)
     6:   (b:unit ->int)
     7: { z = a() + b(); }
     8: 
     9: noinline proc g() { f {1} {2} ; };
    10: g();
    11: print z; endl;
End felix section to test/regress/rt-1.01.30-0.flx[1]
Start data section to test/regress/rt-1.01.30-0.expect[1 /1 ]
     1: 3
End data section to test/regress/rt-1.01.30-0.expect[1]