xxxxxxxxxx
import std;
struct foo(alias F)
{
int bla;
this(int b)
{
bla = b;
}
ReturnType!F opCall()
{
F();
}
}
void main()
{
auto a = foo!((){})(0);
a();
auto b = foo!(void function())(0);
b();
auto c = foo!(() => {})(0);
c();
}