xref: /openbsd-src/regress/usr.sbin/btrace/map-unnamed.bt (revision ced7e73d87c609c085952039bd8d05a4cdcd0e9c)
1BEGIN
2{
3	@[8 - 1, "test"] = count();
4	printf("=> Print with one element\n");
5	print(@);
6}
7
8END
9{
10	@[7, "test"] = count();
11	printf("=> Print all map:\n");
12	print(@);
13	clear(@);
14}
15