xref: /freebsd/bin/sh/tests/builtins/case16.0 (revision c5f49ece16a92380092191fad13cb1da72af5d37)
1
2f() { return 42; }
3f
4case x in
5x) [ $? = 42 ] ;;
6esac
7