1// Test catching invalid use of argN in BEGIN and END contexts. 2BEGIN { 3 print(arg0); 4} 5 6END { 7 print(arg0); 8} 9