Thread overview
[Issue 5473] New: Members of const-qualified classes are not const themselves.
Apr 22, 2012
SomeDude
Apr 23, 2012
Kenji Hara
January 22, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5473

           Summary: Members of const-qualified classes are not const
                    themselves.
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: eatingstaples@gmail.com


--- Comment #0 from eatingstaples@gmail.com 2011-01-21 16:05:06 PST ---
Created an attachment (id=875)
Code demonstrating the issue

An object typed as const will have const members, and a class declared as const will have const members, but a class typed as const does not have const members.

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


SomeDude <lovelydear@mailmetrash.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lovelydear@mailmetrash.com


--- Comment #1 from SomeDude <lovelydear@mailmetrash.com> 2012-04-22 15:28:33 PDT ---
The example code in attachment is:

import std.stdio;

class A
{
    int b;
}

void main()
{
    const A a = new A;
    writeln(typeof(a).stringof); // const(A)
    writeln(typeof(a.b).stringof); // const(int)

    writeln((const A).stringof); // const(A)
    writeln(typeof((const A).b).stringof); // int, should be const(int)
}

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


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

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


--- Comment #2 from Kenji Hara <k.hara.pg@gmail.com> 2012-04-23 10:34:46 PDT ---
https://github.com/D-Programming-Language/dmd/pull/903

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



--- Comment #3 from github-bugzilla@puremagic.com 2012-04-23 14:54:31 PDT ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/94c3a15d6b267ca7ad314482813dfa74e4b55b3f fix Issue 5473 - Members of const-qualified classes are not const themselves

https://github.com/D-Programming-Language/dmd/commit/e2c9bfa15882994a4fef9f20532797d42e887379 Merge pull request #903 from 9rnsr/fix5473

Issue 5473 - Members of const-qualified classes are not const themselves

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