I think I got it! This seems to work:

class Derived {
    //Pulls in all the template forms in the base class
    template get(args ...) {
        alias Base.get!args get;
    }

    //Create new versions of get() here.
}

Reply via email to