summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/expansion/set-u3.0
blob: ea848f7d900b0cd84646a689afe80524b5e03e5c (plain) (blame)
1
2
3
4
5
6
# $FreeBSD: head/bin/sh/tests/expansion/set-u3.0 221463 2011-05-04 22:12:22Z jilles $

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