You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
interfaceI
{
voidm();
}
finalclassC : I // test.d(6): Error: class `test.C` interface function `void m()` is not implemented
{
voidhasError()
{
somethingCrazy(); // ... but ... no complaints about this line?
}
}
When implementing a non-trivial interface, it's more useful to have semantic errors in the methods that are in the process of being implemented, rather than halting compilation simply because one method is missing.
This seems to be a regression, introduced in D 2.093.0.
The text was updated successfully, but these errors were encountered:
When implementing a non-trivial interface, it's more useful to have semantic errors in the methods that are in the process of being implemented, rather than halting compilation simply because one method is missing.
This seems to be a regression, introduced in D 2.093.0.
The text was updated successfully, but these errors were encountered: