1.2.42. test/regress/rt-1.01.42

Start felix section to test/regress/rt-1.01.42-0.flx[1 /1 ]
     1: #line 1678 "./lpsrc/flx_regress.pak"
     2: //Check goto:nonlocal
     3: #import <flx.flxh>
     4: 
     5: proc f () {
     6:   val x = { goto foo; };
     7:   print 'there'; endl;
     8:   foo:>
     9:   print 'here'; endl;
    10: }
    11: 
    12: f;
    13: 
    14: proc g () {
    15:   val x = { goto foo; };
    16:   print 'there'; endl;
    17:   foo:>
    18:   print 'here'; endl;
    19: }
    20: 
    21: g;
End felix section to test/regress/rt-1.01.42-0.flx[1]
Start data section to test/regress/rt-1.01.42-0.expect[1 /1 ]
     1: there
     2: here
     3: there
     4: here
End data section to test/regress/rt-1.01.42-0.expect[1]