Alias RemoveAttributes

Removes all the attributes from compile-time entity that is given as the only argument

alias RemoveAttributes(T...) = SetFunctionAttributes!(U,functionLinkage!U,FunctionAttribute.none);

Example

void f0() @safe {}
void f1() @system {}

static assert(is(RemoveAttributes!f1 == RemoveAttributes!f0));