xxxxxxxxxx
auto apply(alias fun, T)(T arg) {
return fun(arg);
}
void main() @safe
{
int n;
auto _ = apply!(x => 0)(&n);