https://bugs.winehq.org/show_bug.cgi?id=47803
Bug ID: 47803 Summary: call :routine || exit produces different results from Windows command prompt Product: Wine Version: 4.16 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: cmd Assignee: wine-bugs@winehq.org Reporter: lois.diqual@gmail.com Distribution: ---
The following batch code produces different results on wine cmd and windows cmd:
call :subroutine || exit /B 0 echo "after subroutine call" :subroutine goto :EOF
Expected output: "after subroutine call"
Actual output: - Wine cmd: nothing - Windows cmd: "after subroutine call"