[Issue 4512] New: Class with abstract method

d-bugmail at puremagic.com d-bugmail at puremagic.com
Mon Jul 26 13:45:25 PDT 2010


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

           Summary: Class with abstract method
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: accepts-invalid
          Severity: minor
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: bearophile_hugs at eml.cc


--- Comment #0 from bearophile_hugs at eml.cc 2010-07-26 13:45:24 PDT ---
This compiles with no errors with dmd 2.047:

class Foo {
    abstract void bar();
}
void main() {}


But in my opinion dmd has to require code like this, where Foo too has
'abstract' (I think LDC compiler does the same):

abstract class Foo {
    abstract void bar();
}
void main() {}


See also bug 3934

----------------


This is instead OK, because according to D syntax all Foo methods are meant to
be abstract:

abstract class Foo {
    void bar();
}
void main() {}

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