On Monday, 13 April 2026 at 09:23:24 UTC, user1234 wrote:
> example:
>
> ```d
> struct Test
> {
> this()(this)
> {
Good find, I think this should be a parse error. I'm looking at
doing that. Also these only error if instantiated:
```d
void f()(this);
void g()(super);
```