Thread overview
[Issue 7682] New: shared array type and "cast() is not an lvalue" error
Mar 11, 2012
Kenji Hara
Mar 11, 2012
Kenji Hara
Mar 12, 2012
Walter Bright
March 11, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7682

           Summary: shared array type and "cast() is not an lvalue" error
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: rejects-valid
          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-11 04:31:40 PDT ---
Comment out of line A will suppress the error in line B.
----
template ConstOf(T)
{
    alias const(T) ConstOf;
}
void main()
{
    shared(ConstOf!(int[])) x;  // line A

    struct S3 { int[10] a; }
    shared(S3) sh3;
    shared(int[]) sh3sub = sh3.a[];
    assert(pointsTo(sh3sub));   // line B
        // Error: cast(shared(const(int[])))sh3sub is not an lvalue
}
bool pointsTo(S)(ref const S source) @trusted pure nothrow
{
    return true;
}

-- 
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=7682


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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull


--- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2012-03-11 04:42:34 PDT ---
https://github.com/D-Programming-Language/dmd/pull/797

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



--- Comment #2 from github-bugzilla@puremagic.com 2012-03-11 19:32:59 PDT ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/0ac2cd091b51c158ecdad0c966e5ad910d2837c9 Merge pull request #797 from 9rnsr/fix7682

Issue 7682 - shared array type and "cast() is not an lvalue" error

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


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: -------