xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/intest.awk (revision f52943a93040563107b95bccb9db87d9971ef47d)
1BEGIN {
2	bool = ((b = 1) in c);
3	print bool, b	# gawk-3.0.1 prints "0 "; should print "0 1"
4}
5