(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
diag9479.d
/*
TEST_OUTPUT:
---
fail_compilation/diag9479.d(10): Error: undefined identifier `something_undefined`
---
*/

int delegate() bug9479()
{
    return { return something_undefined; };
}