]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/variadic118.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic118.C
1 // { dg-do compile { target c++11 } }
2
3 template <class... T>
4 void f(T... ts);
5
6 struct B { };
7 int main()
8 {
9 f<int>(B(), 1); // { dg-error "" }
10 }
This page took 0.038665 seconds and 5 git commands to generate.