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

import ice8392;

class B
{
    this(B);
}

void foob(A a, B b)
{
    a.fooa!((arg){
            return new B(b);
    });
}