On Mon, 26 Aug 2024, 05:46 Timon Gehr via Digitalmars-d, <digitalmars-d@puremagic.com> wrote:
On 8/25/24 19:27, Manu wrote:
> There's fault lines and fractures all over the place; this category of
> issues should be addressed with a laser focus and ruthless murder... and
> it should have happened 15 years ago.

FWIW with my frontend this just works:

```d
struct S{ int x; }
void foo(alias a)(){ a=2; }
int bar(){
     S s;
     foo!(s.x)();
     return s.x;
}
static assert(bar()==2);
```

Strap your fork to a CI machine and I'll use it exclusively! :)

Or, you know, make a PR.