mixin(`import `~moduleName!(T)~`;`); mixin(`alias X = T.`~name~`;`); super.Reflect!(X);
I realize X is local but I'm trying to figure out why it can't be passed to a "non-global" template.
Alex via Digitalmars-d-learn Sat, 06 Apr 2019 22:25:57 -0700
mixin(`import `~moduleName!(T)~`;`); mixin(`alias X = T.`~name~`;`); super.Reflect!(X);
I realize X is local but I'm trying to figure out why it can't be passed to a "non-global" template.