aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic156.C
blob: 7d3c97d6890b0248e93d5cfd835f02981e67f45b (plain)
1
2
3
4
5
6
// PR c++/52844
// { dg-do compile { target c++11 } }

template < class > struct V { };  
template < int...Is > void f ( V < Is...>) { }  // { dg-error "mismatch|type" }
auto g ( ) -> decltype ( f ( V < long >  ( ) ) ) ; // { dg-error "matching" }