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: ;
1: ONE