[Issue 3500] Program behaves differently with -inline

2010-01-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3500


Don  changed:

   What|Removed |Added

   Severity|normal  |critical


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3500] Program behaves differently with -inline

2010-01-04 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3500


Don  changed:

   What|Removed |Added

 CC||clugd...@yahoo.com.au


--- Comment #2 from Don  2010-01-04 02:48:03 PST ---
This may be related to bug 2127.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 3500] Program behaves differently with -inline

2009-11-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3500



--- Comment #1 from nfx...@gmail.com 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: ---