(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail317.d
/*
TEST_OUTPUT:
---
fail_compilation/fail317.d(10): Error: function `fail317.I.f` has no function body with return type inference
---
*/

interface I
{
    auto f()
    in {}
    out {}
}