digitalmars.D.bugs - [Issue 7316] New: the result of a strongly pure function should implicitly convert to and from shared
- d-bugmail puremagic.com (24/24) Jan 18 2012 http://d.puremagic.com/issues/show_bug.cgi?id=7316
http://d.puremagic.com/issues/show_bug.cgi?id=7316 Summary: the result of a strongly pure function should implicitly convert to and from shared Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: timon.gehr gmx.ch --- Comment #0 from timon.gehr gmx.ch 2012-01-18 17:13:54 PST --- The following code should compile: int[] foo()pure{return new shared(int)[1];} shared(int)[] bar()pure{return new int[2];} void main(){ shared a = foo(); int[] b = bar(); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 18 2012