xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/inpref.awk (revision 20a7641f9918de8574b8b3b47dbe35c4bfc78df1)
1function test(x) {
2	print x
3	getline
4	print x
5}
6
7{
8	test($0)
9}
10