www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 7316] New: the result of a strongly pure function should implicitly convert to and from shared

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



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