[Issue 17187] Error when using std.format.unformatValue with static arrays

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Wed Feb 15 12:02:23 PST 2017


https://issues.dlang.org/show_bug.cgi?id=17187

--- Comment #1 from Jack Stouffer <jack at jackstouffer.com> ---
BTW this is a bug because this works

auto str = "aaa";
auto spec = singleSpec("%s");
dchar[3] ret = ['a', 'a', 'a'];
assert(str.unformatValue!(dchar[3])(spec) == ret);

--


More information about the Digitalmars-d-bugs mailing list