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;
1: there 2: here 3: there 4: here