(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
runnable/
extra-files/
std14198/
format.d
module std14198.format;

struct FormatSpec(Char) if (is(Char == char))
{
    import std14198.conv;

    string toString()
    {
        return to!string(true); // necessary
    }
}