blob: 8c8afe5c9b1b1c1203aa6704d0e5c57880ebc046 [file] [log] [blame]
// PR c++/17413
template <typename T> void foo() {}
int main () {
struct S {};
foo<S> (); // { dg-warning "template argument uses local type" }
}