https://issues.dlang.org/show_bug.cgi?id=9181

--- Comment #1 from Basile-z <[email protected]> ---
Funnily this alternative, which still needs inference for the array, works

---
struct Foo {
    static immutable foos1 = [F];
    static immutable F = Foo();
} 
---

Because type semantic of `F` is launched when doing the one of `foo1`, hence
`F` is not already "inuse".

--

Reply via email to