http://d.puremagic.com/issues/show_bug.cgi?id=3706
--- Comment #2 from Don <[email protected]> 2010-07-22 12:20:12 PDT --- Here's a slightly reduced test case. -------------- interface I{ void h(); } interface K{ void f(); } interface J:I,K {} class A:J{ void f(){ } void h(){ } } void main(){ auto a = new A(); J b = a; K c = a; assert(&b.f == &c.f); // fails: &b.f returns &a.h. } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
