https://issues.dlang.org/show_bug.cgi?id=17584
Issue ID: 17584
Summary: Wrong error message for deprecated overrides
Product: D
Version: D2
Hardware: x86_64
OS: Linux
Status: NEW
Severity: enhancement
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
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
--