Add execution tests of ARM EXT intrinsics
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic118.C
blobee742ebb9463d3028b9119e3b9e036acbd1446f4
1 // This should fail deduction, before it produces a candidate.
2 // { dg-do compile { target c++11 } }
4 template <class... T>
5 void f(T... ts);                // { dg-message "deduction" }
7 struct B { };
8 int main()
10   f<int>(B(), 1);               // { dg-error "" }