[Issue 4735] New: class that implements interface can override a static method

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Aug 26 14:18:21 PDT 2010


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

           Summary: class that implements interface can override a static
                    method
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: andrej.mitrovich at gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2010-08-26 14:18:14 PDT ---
According to the docs:

"Classes that inherit from an interface may not override final or static
interface member functions."

module test;

void main()
{
}

interface D 
{
    void bar();
    static void foo() { }
    final void abc() { }
}

class C : D {
    void bar() { } // ok
    void foo() { } // passes, but should not
}

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