What about:
void echo(T)()
{
writeln(mixin(interp!T));
Won't work because it won't be able to see the local variables you want to interpolate.
Adam D. Ruppe via Digitalmars-d-announce Tue, 22 Sep 2015 18:52:11 -0700
What about:
void echo(T)()
{
writeln(mixin(interp!T));
Won't work because it won't be able to see the local variables you want to interpolate.