On Monday, 25 June 2012 at 12:01:22 UTC, Timon Gehr wrote:
On 06/25/2012 01:11 PM, bearophile wrote:It does. It is not fully implemented.
Ok. That's good to know then. Thanks.
Out of sheer curiosity, if I have "potentially dangerous code, eg"
int[] fun(int i)
{
int[3] statictab;
int[] = statictab
if(i) dyntab = new int[3];;
return dyntab;
}
I expect my compiler to refuse to compile this, because this
*could* produce undefined behavior. Is this correct?
