(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
goto1.d
/*
TEST_OUTPUT:
---
fail_compilation/goto1.d(1010): Error: `return` statements cannot be in `finally` bodies
---
 */

void foo();
void bar();

#line 1000

void test2()
{
    try
    {
        foo();
    }
    finally
    {
        bar();
        return;
    }
}