(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
imports/
test17541_3.d
module three;

void aaa() @nogc
{

}

struct TT(T)
{
    void insertabcdefg(T) // @nogc  <-- deduction problem
    {
        //static assert(insertabcdefg.mangleof == "_D5three__T2TTTiZQg13insertabcdefgMFiZv");
        aaa();
    }
}