#include <iostream>
#include <typeinfo>
using namespace std;
template <typename T0, typename ... Ts>
class foo {};
template <typename ... Ts>
void bar(const foo<Ts...> &v){
cout << typeid(v).name() << endl;
}
int main() {
// your code goes here
foo<int,double> f;
bar<int,double>(f);
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8dHlwZWluZm8+CnVzaW5nIG5hbWVzcGFjZSBzdGQ7Cgp0ZW1wbGF0ZSA8dHlwZW5hbWUgVDAsIHR5cGVuYW1lIC4uLiBUcz4KICAgIGNsYXNzIGZvbyB7fTsKCnRlbXBsYXRlIDx0eXBlbmFtZSAuLi4gVHM+CnZvaWQgYmFyKGNvbnN0IGZvbzxUcy4uLj4gJnYpewoJY291dCA8PCB0eXBlaWQodikubmFtZSgpIDw8IGVuZGw7Cn0KCmludCBtYWluKCkgewoJLy8geW91ciBjb2RlIGdvZXMgaGVyZQoJZm9vPGludCxkb3VibGU+IGY7CgliYXI8aW50LGRvdWJsZT4oZik7CglyZXR1cm4gMDsKfQ==
prog.cpp: In function ‘int main()’:
prog.cpp:16:19: error: no matching function for call to ‘bar(foo<int, double>&)’
bar<int,double>(f);
^
prog.cpp:16:19: note: candidate is:
prog.cpp:9:6: note: template<class ... Ts> void bar(const foo<Ts ...>&)
void bar(const foo<Ts...> &v){
^
prog.cpp:9:6: note: template argument deduction/substitution failed:
prog.cpp:16:19: note: mismatched types ‘double’ and ‘double’
bar<int,double>(f);
^