http://d.puremagic.com/issues/show_bug.cgi?id=8320
Summary: metastrings.Format and int array
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Ellery Newcomer <[email protected]> 2012-06-29
18:22:46 PDT ---
Format does not properly format.
code:
import std.metastrings;
void main() {
static assert(false, Format!("abc %s", [1,2,3]));
}
produces:
test.d(3): Error: static assert ['a','b','c',' ','\x01','\x02','\x03']
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------