ddoc9305
- void foo(alias p = (a) => a)();
- foo()
- template X(alias pred = (x) => x)
template X(alias pred = (x)
{
int y;
return y;
}
)
template X(alias pred = (int x) => x)
template X(alias pred = (int x)
{
int y;
return y;
}
)
- template X(alias pred = function (x) => x)
template X(alias pred = function (x)
{
return x + 1;
}
)
template X(alias pred = function (int x) => x)
template X(alias pred = function (int x)
{
return x + 1;
}
)
template X(alias pred = function int(x) => x)
template X(alias pred = function int(x)
{
return x + 1;
}
)
template X(alias pred = function int(int x) => x)
template X(alias pred = function int(int x)
{
return x + 1;
}
)
- template X(alias pred = delegate (x) => x)
template X(alias pred = delegate (x)
{
return x + 1;
}
)
template X(alias pred = delegate (int x) => x)
template X(alias pred = delegate (int x)
{
return x + 1;
}
)
template X(alias pred = delegate int(x) => x)
template X(alias pred = delegate int(x)
{
return x + 1;
}
)
template X(alias pred = delegate int(int x) => x)
template X(alias pred = delegate int(int x)
{
return x + 1;
}
)
Page generated by Ddoc.