(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail318_b.d
/*
TEST_OUTPUT:
---
fail_compilation/fail318_b.d(8): Error: function `D main` must return `int`, `void` or `noreturn`, not `string`
---
*/

auto main()
{
    return "";
}