1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// { dg-options "-std=c++0x" } template<class U, class... T> void f() // { dg-message "note" } { f<T...>(); // { dg-error "no matching" } // { dg-message "candidate" "candidate note" { target *-*-* } 6 } } template<> void f() { } // { dg-error "template-id" } int main() { f<char>(); }