#include <iostream> using namespace std; template<class T1> template<class T2> void function(T1 *a, T2*b) {} int main() { // your code goes here return 0; }
Standard input is empty
prog.cpp:6:6: error: too many template-parameter-lists
void function(T1 *a, T2*b) {}
^
Standard output is empty