On 02/25/2011 05:09 PM, bearophile wrote:

>      int j;
>      int[2] y;
>      y[j] = j = 1;

I think that's undefined behavior in C and C++. It is not defined whether j's previous or past value is used in y[j].

I would expect the situation be the same in D.

Ali

Reply via email to