xref: /openbsd-src/regress/usr.sbin/btrace/beginend-argn.bt (revision fe7ae6925862b7fefbeadc5109b8cadc72f70ed9)
1// Test catching invalid use of argN in BEGIN and END contexts.
2BEGIN {
3	print(arg0);
4}
5
6END {
7	print(arg0);
8}
9