
# test that case statement works
# zsh 4.0.6-10 bypasses this, and exits 0
# Bug163237 against zsh by Adam Heath


case a in (a)exit ;;(b)false ;;
esac
exit 1
