static class A { int bar; } static class B { A foo = new A(); } auto b = new B(); mixin(GetMember!(b, "foo.bar")) = 42;
See Implementation