On Monday, 23 March 2020 at 10:41:43 UTC, Jacob Carlborg wrote:
> class DSingleton
> {
> immutable DSingleton instance = new DSingleton;
> }
Should of course be `static`:
class DSingleton
{
static immutable DSingleton instance = new DSingleton;
}
--
/Jacob Carlborg