dmd/compiler/test/runnable/imports/ice10086y.d
2022-07-09 18:53:07 +02:00

10 lines
174 B
D

module imports.ice10086y;
auto bind(alias f, bindValues...)()
{
auto bind(Types...)(Types values)
{
return f(bindValues, values);
}
return bind();
}