[Issue 7311] New: typeof(x~y) should never be const(T)[]

d-bugmail at puremagic.com d-bugmail at puremagic.com
Wed Jan 18 10:56:31 PST 2012


http://d.puremagic.com/issues/show_bug.cgi?id=7311

           Summary: typeof(x~y) should never be const(T)[]
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: timon.gehr at gmx.ch


--- Comment #0 from timon.gehr at gmx.ch 2012-01-18 10:56:30 PST ---
typeof(x~y) should never be const(T)[].
const only has a meaning in presence of aliasing. Unique const data is
meaningless.

int[] a;
immutable int[] b;
const int[] c;
static assert(typeof(a~b)==int[]);
static assert(typeof(a~c)==int[]);
static assert(typeof(b~b)==immutable(int)[]);
static assert(typeof(b~c)==immutable(int)[]);
static assert(typeof(c~c)==int[]);

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list