~vcs-imports/gawk/master

408.20.42 by Arnold D. Robbins
Cleanup files and fix up tests for typed regexes and typeof.
1
BEGIN {
2
	f = "foo"
408.31.1 by Arnold D. Robbins
Restore typed regexp code in a new branch.
3
	p = @/o/
408.20.42 by Arnold D. Robbins
Cleanup files and fix up tests for typed regexes and typeof.
4
	gsub(p, "q", f)
5
	print f
408.31.1 by Arnold D. Robbins
Restore typed regexp code in a new branch.
6
	fun = "gsub"
7
	@fun(p, "q", f)
8
	print f
408.20.42 by Arnold D. Robbins
Cleanup files and fix up tests for typed regexes and typeof.
9
}