Thread overview
[Issue 7672] New: Remove top const doesn't work for inout array type.
Mar 08, 2012
Kenji Hara
Mar 11, 2012
Kenji Hara
Mar 11, 2012
Walter Bright
March 08, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7672

           Summary: Remove top const doesn't work for inout array type.
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: k.hara.pg@gmail.com


--- Comment #0 from Kenji Hara <k.hara.pg@gmail.com> 2012-03-08 08:23:41 PST ---
T foo(T)(T a){ return a; }

void test(inout(int[]) a = null)
{
    static assert(is( typeof(    a ) == inout(int[]) ));  // OK
    static assert(is( typeof(foo(a)) == inout(int)[] ));  // NG
    // Error: static assert  (is(typeof(__error) == inout(int)[])) is false
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
March 11, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7672


Kenji Hara <k.hara.pg@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull, rejects-valid


--- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2012-03-11 06:59:24 PDT ---
https://github.com/D-Programming-Language/dmd/pull/800

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
March 11, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7672


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@digitalmars.com
         Resolution|                            |FIXED


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