xref: /freebsd/bin/sh/tests/expansion/set-u2.0 (revision 6574b8ed19b093f0af09501d2c9676c28993cb97)
1# $FreeBSD$
2
3set -u
4: $* $@ "$@" "$*"
5set -- x
6: $* $@ "$@" "$*"
7shift $#
8: $* $@ "$@" "$*"
9set -- y
10set --
11: $* $@ "$@" "$*"
12exit 0
13