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];

Reply via email to