(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.dg/
torture/
imports/
pr108055spec.d
module imports.pr108055spec;

template Unqual(T : const U, U)
{
    alias Unqual = U;
}

template FormatSpec(Char)
if (!is(Unqual!Char == Char))
{
    alias FormatSpec = FormatSpec!(Unqual!Char);
}

struct FormatSpec(Char)
if (is(Unqual!Char == Char))
{
    const(Char)[] nested;
}