On Saturday, 28 December 2024 at 19:21:43 UTC, Walter Bright wrote: > ```d > struct S { > int x; > T t; > alias ti = t.i; > } > ``` Thank you, I'm curious what does this enable on top of ```d @property ref ti() => t.i; ``` ?