Thread overview
struct with @disable(d) default constructor doesn't work with arrays?
Aug 22, 2012
Minas Mina
Aug 22, 2012
bearophile
Aug 22, 2012
Simen Kjaeraas
August 22, 2012
I have this struct:

struct S
{
	int[] t;
	
	@disable this();
	
	this(int sz)
	{
		t = new int[sz];
		t[] = 1;
	}
	
	S opCall(int sz)
	{
		S s = S(sz);
		return s;
	}
	
	this(this)
	{
		t = t.dup;
	}
}


Naturally, this doesn't work:
S s; // compiler error

However this does compile.
S[100] s;


S[100] s;	
writeln(s[0].t[0]); // range violation error!

I think it's a bug, what do you think?
August 22, 2012
Minas Mina:

> I think it's a bug, what do you think?

Search for it in Bugzilla. Maybe it's there already.

Bye,
bearophile
August 22, 2012
On Wed, 22 Aug 2012 13:09:49 +0200, bearophile <bearophileHUGS@lycos.com> wrote:

> Minas Mina:
>
>> I think it's a bug, what do you think?
>
> Search for it in Bugzilla. Maybe it's there already.
>
> Bye,
> bearophile

It is. #7021/#8457

-- 
Simen