1 module std14198.format;
2 
3 struct FormatSpec(Char) if (is(Char == char))
4 {
5     import std14198.conv;
6 
toString()7     string toString()
8     {
9         return to!string(true); // necessary
10     }
11 }
12