[Issue 4560] New: D2 Language Docs: http://www.digitalmars.com/d/2.0/const3.html

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Aug 1 14:27:07 PDT 2010


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

           Summary: D2 Language Docs:
                    http://www.digitalmars.com/d/2.0/const3.html
           Product: D
           Version: D2
          Platform: Other
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: www.digitalmars.com
        AssignedTo: nobody at puremagic.com
        ReportedBy: andrej.mitrovich at gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2010-08-01 14:27:03 PDT ---
The menu on the left with the list of language documentation pages is missing
from this page (the one with the links to "Lexical Modules Declarations
Types..." etc).



"Immutable Member Functions"

The example code has a missing closing brace and will give out the wrong errors
(it will complain about initializing x outside of a constructor instead of
complaining about immutability). Change the code to this to get the relevant
errors:

struct S
{   
    int x = 1;

    immutable void foo()
    {
        x = 4;        // error, x is immutable
        this.x = 4; // error, x is immutable
    }
}

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