blob: afd323715746d3e120a344a839565426fbf329c2 (
plain)
1
2
3
4
5
6
7
8
|
// { dg-options "-std=gnu++0x" }
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 *-*-* } 6 }
}
|