ref: 14c3fe42d2a93be3a4ceb1946f8bb7fcaf75ac4d dir: /bugs-fixed/fs-overflow.awk/
function foo() { a = ""; for (i = 0; i < 10000; i++) { a = a "c"; } return a; } BEGIN { FS = foo(); $0="foo"; print $1; }