OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / pr31431-2.C
1 // { dg-options "-std=gnu++0x" }
2 template<typename, typename..., typename> void foo();
3
4 void bar()
5 {
6   foo<int>(); // { dg-error "no matching function" }
7 }