On Tuesday, 3 August 2021 at 17:01:38 UTC, Mike Parker wrote:
On Tuesday, 3 August 2021 at 16:43:52 UTC, NonNull wrote:how does it work for recursive types like a struct containing a pointer to a struct of the same typeA struct `S` with a member of type `S*` is still just a struct `S`. The pointer doesn't change anything about the type.
Aha, so it just uses the name S, not an algebraic representation of the structure of S.