http://d.puremagic.com/issues/show_bug.cgi?id=3500
--- Comment #1 from [email protected] 2009-11-12 10:29:58 PST --- D2 testcase. import std.stdio; class A { void x() { writefln("A::x()"); } } class B : A { override void x() { writefln("B::x()"); } private void do_x() { super.x(); } } void main() { B b = new B(); b.do_x(); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
