#!/bin/sh
{
    echo 'compound start'
    echo 'before return'
return
echo 'after return, return value:' 0;
    echo 'compound end'
}
