digitalmars.D - double interface inheritance?
- rm <roel.mathys gmail.com> Oct 24 2006
Is the stuff below allowed?
interface C { void f(); } class CC : C,C { void f() {} } void main() { CC cc = new CC(); cc.f(); } <<< I thought it should generate an error? roel
Oct 24 2006








rm <roel.mathys gmail.com>