D-Scanner icon indicating copy to clipboard operation
D-Scanner copied to clipboard

Warn when sub-classes redefine fields

Open Hackerpilot opened this issue 9 years ago • 2 comments

Example of code that DMD silently accepts with warnings enabled:

class Super
{
    int x;
}
class Sub : Super
{
    int x;
}

Hackerpilot avatar Feb 09 '16 21:02 Hackerpilot

+1. I just got bitten by this.

helikopterodaktyl avatar May 26 '21 18:05 helikopterodaktyl

@helikopterodaktyl use reactions pls so it's sortable in the issue search: https://github.com/dlang-community/D-Scanner/issues?q=sort%3Areactions+is%3Aopen

WebFreak001 avatar May 26 '21 19:05 WebFreak001