It's for a test that I have in 20 minutes, actually. It will be on the rule of five and function templates, and I just assumed we'll have to do the rule of five in a template?
The rule of five has nothing specifically to do with templates. It's a rule that is applicable to classes in general, not just class templates.
To answer your initial question, template <class ruleOfFive> would not work because the template parameter can't have the same name as the class template. You need to use a different name, e.g. template <classT>, but if T is never used inside ruleOfFive it would be kind of pointless.