xxxxxxxxxx
import std.format : format;
struct Bar(T) {
mixin(T.stringof ~ " foo;");
}
struct Foo {}
unittest {
Bar!Foo bar;
void main() {}