summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/pr31431.C
blob: 8116e7f567a884452aad4301d10f446282a3c819 (plain)
1
2
3
4
5
6
7
8
// { dg-do compile { target c++11 } }
template<typename..., typename> void foo(); // { dg-message "note" }

void bar()
{
  foo<int>(); // { dg-error "no matching function" }
  // { dg-message "(candidate|deduce template parameter)" "candidate note" { target *-*-* } .-1 }
}