http://d.puremagic.com/issues/show_bug.cgi?id=10108
Simen Kjaeraas <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #7 from Simen Kjaeraas <[email protected]> 2013-05-17 11:53:53 PDT --- Simplified example without __gshared: import core.thread; int[] arr = [1,2,3]; void main( ) { int* p = arr.ptr; auto thr = new Thread({assert(arr.ptr == p);}); // Should have failed. thr.start(); thr.join(); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
