xref: /illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/t.delete3 (revision e6d6c189fa3a95d7aa27bbe0aeacf7c1a6b57c8c)
1{ x[$1] = $1
2  delete x[$1]
3  n = 0
4  for (i in x) n++
5  if (n != 0)
6	print "error", n, "at", NR
7}
8