Thread overview
default construction is disabled for type
Mar 06, 2019
Machine Code
Mar 06, 2019
Machine Code
Mar 06, 2019
Machine Code
March 06, 2019
What's that error? below code used to work fine, now it gives this compiler error.

class Keyword
{
	this(string value, Token type)
	{
		this.value = value;
		this.type = type;
	}

	string value;
	Token type;
	Keyword next;
}


static Keyword[] hashtab = new Keyword[hashtab_siz];

March 06, 2019
> public this() { }
Doesn't change anything...
March 06, 2019
So I find out the issue: it was due a struct member of the class having @disable this();