www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 17585] New: Wrong error message for deprecated overrides

https://issues.dlang.org/show_bug.cgi?id=17585

          Issue ID: 17585
           Summary: Wrong error message for deprecated overrides
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: timon.gehr gmx.ch

The code:

class C{
    void foo(){}
}

class D: C{
    deprecated override void foo(){}          
}

Yields:

Deprecation: function tt.D.foo deprecated functions cannot be annotated
 disable

That is not what is happening. The error message should instead be:

Deprecation: overridden functions cannot be deprecated

--
Jul 02 2017