http://d.puremagic.com/issues/show_bug.cgi?id=8106
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Walter Bright <[email protected]> 2012-06-12 16:46:31 PDT --- For this program: ======================= struct Colour { ubyte a,r,g,b; immutable Colour white = Colour(255,255,255,255); } void func(Colour c = Colour.white); void main() { pragma(msg, func.stringof); } ======================= it prints: func(white) not: void func(Colour c = white) Can you please verify the behavior you are seeing? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
