/*
TEST_OUTPUT:
---
fail_compilation/ice9540.d(35): Error: function `ice9540.A.test.AddFront!(this, f).AddFront.dg(int _param_0)` is not callable using argument types `()`
fail_compilation/ice9540.d(35):        too few arguments, expected 1, got 0
fail_compilation/ice9540.d(26): Error: template instance `ice9540.A.test.AddFront!(this, f)` error instantiating
---
*/
template Tuple(E...) { alias E Tuple; }
alias Tuple!(int) Args;
void main() {
    (new A).test ();
}
void test1 (int delegate (int) f) { f (-2); }
class A
{
    int f (int a) {
        return a;
    }
    void test () {
        test1 (&AddFront!(this, f));
    }
}
template AddFront (alias ctx, alias fun)  {
    auto AddFront(Args args) {
        auto dg (Args dgArgs) {
            return fun (dgArgs);
        }
        dg.ptr = ctx;
        return dg(args);
    }
}