Home | History | Annotate | Download | only in bugs-fixed
      1 function foo() {
      2     a = "";
      3     for (i = 0; i < 10000; i++) {
      4         a = a "c";
      5     }
      6     return a;
      7 }
      8 
      9 BEGIN {
     10     FS = foo();
     11     $0="foo";
     12     print $1;
     13 }
     14