http://d.puremagic.com/issues/show_bug.cgi?id=7628
--- Comment #4 from Kenji Hara <[email protected]> 2012-03-03 08:29:31 PST --- This test case with 2.059head does not raise errors, but std.format still has an issue. Reduced test case: struct Foo { int[] bar; alias bar this; } void main() { import std.format; import std.array; auto w = appender!string(); FormatSpec!char f; Foo foo; formatValue(w, foo, f); // OK formatValue(w, Foo(), f); // NG } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
