July 01, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1302

           Summary: DMD2.001 rejects final const member function
           Product: D
           Version: unspecified
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: noshiika@gmail.com


DMD 2.001 doesn't accept final const member function, though 2.000 does:

class A{
    // conflicting storage class const
    final const int func(){ return 1; }
}

while this passes:

class A{
    final: const int func(){ return 1; }
}


-- 

June 24, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=1302


clugdbug@yahoo.com.au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from clugdbug@yahoo.com.au  2008-06-24 01:59 -------
Both compile in DMD2.015 (Presumanbly because of the changes to the const
regime).


--