module pind.samples.ja.ranges.ranges_13; import std.stdio; import std.range; struct S { void toString(O)(ref O o) const if (isOutputRange!(O, char)) { put(o, "hello"); } } void main() { auto s = S(); writeln(s); }