xxxxxxxxxx
template f(Ts...)
{
auto f(Inferred)(Inferred inf)
pragma(msg, Ts);
import std.stdio : writeln;
inf.writeln;
}
void main()
f!(int, float, char)("Hello, world!");