aboutsummaryrefslogtreecommitdiffstats
path: root/test/intest.awk
blob: 18e0cc4de08f6bc8d8e6b3278f170305ccbf23ed (plain)
1
2
3
4
BEGIN {
	bool_result = ((b = 1) in c);
	print bool_result, b	# gawk-3.0.1 prints "0 "; should print "0 1"
}