https://issues.dlang.org/show_bug.cgi?id=16166 --- Comment #2 from Danila Letunovskiy <kapblc at mail.ru> --- struct Window { string title; int x, y; int w, h; alias title this; } void main(){ Window w = "Foo"; } --