OSDN Git Service

PR c++/51475 - ICE with invalid initializer-list
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / variadic41.C
1 // A function parameter pack is only deduced if it's at the end
2 // { dg-options "-std=gnu++0x" }
3 template<typename... Args>
4 void f(const Args&... args, int oops);
5
6 int main()
7 {
8   f<>(1);
9   f(1);
10   f<int>(1,2);
11   f(1,2);                       // { dg-error "no match" }
12 }
13
14 // { dg-prune-output "note" }