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