a.d:
```
module a;
struct A {
import b : B;
}
```
b.d:
```
module b;
struct B {
uint t;
}
void f() {
import a : A;
with (A.init) {
auto f = B();
}
}
```
Also try a struct B with zero fields ("Error: more initializers than fields") and a struct B with an A* field ("Error: struct B does not overload ()")
Comment #1 by robert.schadek — 2024-12-13T19:06:03Z