blob: cfa37364975b27430ef47271e71d67aee7b3b33c [file] [log] [blame]
// PR c++/17413
template <typename T> void foo() {}
int main () {
struct S {};
foo<S> (); // { dg-error "match" }
}