#!/bin/sh
echo 'before case'
case 'a' in
    a)  echo 'before return'
return
echo 'after return, return value:' 0;;
esac
echo 'after case'
