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


Walter Bright <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|                            |WORKSFORME


--- Comment #2 from Walter Bright <[email protected]> 2013-10-06 
23:29:32 PDT ---
Updating the code to:
---------
interface Edge {
    int estimate()
        out{ }
}

class DefaultEdge : Edge {
    int estimate()
        out{ }
        body{
            return 1;
        }
}

class DefaultDownEdge : DefaultEdge {
    override int estimate()
        out{ }
        body{
            return 1;
        }
}
----------------
and it compiles without error with dmd 2.064 head.

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

Reply via email to