xref: /freebsd/bin/sh/tests/parser/alias17.0 (revision 10ff414c)
1# $FreeBSD$
2
3v=1
4alias a='unalias -a
5v=2'
6eval a
7[ "$v" = 2 ]
8