1// { dg-options "-std=gnu++0x" }
2template<typename..., typename> void foo();
3
4void bar()
5{
6  foo<int>(); // { dg-error "no matching function" }
7}
8