(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test15464.d
class C15464
{
    static immutable field = 0;
}

struct S15464
{
    this(int i)
    {
    }
}

void issue15464(T)() @S15464(T.field)
{
}

void main()
{
    issue15464!C15464();
}