```sh
class C {
...
}
auto obj = new C();
void func(ref C obj)
{
...
}
```
I don't mind if it does not compile without the `ref`, but it
should be on the table - WYSIWYG.
angel via Digitalmars-d-announce Thu, 05 Oct 2023 10:26:45 -0700
```sh
class C {
...
}
auto obj = new C();
void func(ref C obj)
{
...
}
```
I don't mind if it does not compile without the `ref`, but it
should be on the table - WYSIWYG.