xref: /netbsd-src/external/historical/nawk/dist/testdir/t.re1a (revision b2c35e17b976cf7ccd7250c86c6f5e95090ed636)
1BEGIN { r1 = "[a-cg-j1-3]"
2	r2 = "[^aeiou]"
3}
4
5$0 ~ r1	{ print $0 " matches /[a-cg-j1-3]/" }
6$0 ~ r2	{ print $0 " matches /[^aeiou]/" }
7