struct Foo
{
this(ref const(Foo) other) {}
this(const(Foo) other) {}
}I'm trying to update dmd version and starting from 2.086 my code doesn't compile due to the error above. What is the reason of that? Is it temporarily situation?
drug via Digitalmars-d-learn Wed, 16 Oct 2019 08:30:42 -0700
struct Foo
{
this(ref const(Foo) other) {}
this(const(Foo) other) {}
}I'm trying to update dmd version and starting from 2.086 my code doesn't compile due to the error above. What is the reason of that? Is it temporarily situation?