struct Test
{
int i;
alias this = i;
}Worked fine in 2.061 but in 2.062 I get the errors"Error: no identifier for declarator this" and "Error: alias cannot have initializer".
Was something changed intentionally or is this a bug?
struct Test
{
int i;
alias this = i;
}Worked fine in 2.061 but in 2.062 I get the errors"Error: no identifier for declarator this" and "Error: alias cannot have initializer".
Was something changed intentionally or is this a bug?