xref: /openbsd-src/regress/usr.sbin/btrace/maxoperand.bt (revision 6ee01a095e45aac5da21e0d5aadb43b05def2ff9)
1/*
2 * Check the hard limit of operands
3 */
4BEGIN
5{
6	@ok = 1 + 2 * 3 - 4 + 5;
7	printf("That's ok: '%d'\n", @ok);
8	@notok = 6 * 5 - 4 / 3 + 2 - 1;
9}
10