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

struct Conv
{
    StaticIterable b;
    alias b this;
}

struct StaticIterable
{
    static Conv b;
    alias b this;
}

void each(ref StaticIterable r)
{
    return ;
}

void main()
{
    StaticIterable s;
    each(s);
}