module pind.samples.ja.ranges.ranges_5; import std.array; import std.string; void main() { char[] s = "hello".dup; s.representation.front = 'H'; // コンパイルする assert(s == "Hello"); }