(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail331.d
/*
TEST_OUTPUT:
---
fail_compilation/fail331.d(10): Error: cannot use `typeof(return)` inside function `foo` with inferred return type
---
*/

auto foo()
{
    typeof(return) result;
    return result;
}