aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/expansion/set-u3.0
blob: bd364450351500afb1c0bf92ad31b46ae36d1d5d (plain) (blame)
1
2
3
4
5

set -u
unset x
v=$( (eval ': $((x))') 2>&1 >/dev/null)
[ $? -ne 0 ] && [ -n "$v" ]