dup field in sub-class should be reported by the compiler

name someanon at yahoo.com
Mon Aug 13 11:45:28 PDT 2007


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

Description:  [reply]  	 Opened: 2007-08-13 13:24

dupdefbug.d:
================================
class A {
  int attr;
}

class B : A {
  int attr;
}
================================

$ dmd.exe -c dupdefbug.d

no error reported.

It should report B.attr is dup of A.attr.


------- Comment #1 From Walter Bright 2007-08-13 13:34 [reply] -------

Why should it be an error? Fields are not accessed virtually, so there is no
hijacking problem. The current behavior is as designed.

If you feel it should be changed, please start a thread in digitalmars.D and
present the case.


==================================================================
I think 90% of the time this happens it is a bug, not by the programmer's
intention.

If it's designed to be so in D, I propose to change it; or at least reported
by the compiler.



More information about the Digitalmars-d mailing list