[Issue 24270] Pointer to Nullable of recursive struct

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Dec 10 18:58:34 UTC 2023


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

Nick Treleaven <nick at geany.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nick at geany.org

--- Comment #3 from Nick Treleaven <nick at geany.org> ---
Just to note that this compiles fine:

struct S(T)
{
    int i;
    T m;
}
struct R {
    int i;
    S!(R)* m;
}

--


More information about the Digitalmars-d-bugs mailing list