xref: /freebsd/bin/sh/tests/builtins/lineno2.0 (revision 950a6087ec18cd22464b3297573f54a6d9223c99)
1
2f() {
3	: ${LINENO+${x?}}
4}
5
6unset -v x
7command eval f 2>/dev/null && exit 3
8x=1
9f
10