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