]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/g++.dg/cpp0x/variadic-ex4.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-ex4.C
CommitLineData
4b2e63de 1// { dg-do compile { target c++11 } }
feb6efc1 2template<class X, class Y, class Z> X f(Y,Z); // { dg-message "note" }
d6a85c8d
DG
3template<class... Args> void f2();
4void g()
5{
6 f<int,const char*,double>("aa",3.0);
7 f<int,const char*>("aa",3.0); // Z is deduced to be double
8 f<int>("aa",3.0); // Y is deduced to be char*, and
9 // Z is deduced to be double
10 f("aa",3.0); // { dg-error "no matching" }
6143c998 11 // { dg-message "(candidate|deduce template parameter)" "candidate note" { target *-*-* } .-1 }
d6a85c8d
DG
12 f2<char, short, int, long>(); // okay
13}
This page took 8.176882 seconds and 5 git commands to generate.