summaryrefslogtreecommitdiff
path: root/usr/src/test/util-tests/tests/awk/bugs-fixed/nf-self-assign.awk
blob: 6ae29eef916dc903fb10c670a7e7b3940d1c56ae (plain)
1
2
3
4
5
6
BEGIN {
	$0="a b c";
	OFS=",";
	NF = NF;
	print;
}