https://issues.dlang.org/show_bug.cgi?id=15862
--- Comment #5 from [email protected] --- (In reply to anonymous4 from comment #4) > Proper test case: > > int[] a=f(); > int[] b=f(); > a[0]=0; > b[0]=1; > assert(a[0]==0 && b[0]==1); You can't use asserts (except for assert(false)) to test this. The bug needs -release to occur, and -release disables asserts. --
