OSDN Git Service

gcc:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / local4.C
1 // PR c++/17413
2
3 template <typename T> void foo() {} // { dg-message "candidate" }
4
5 int main () {
6   struct S {};
7   foo<S> (); // { dg-error "match" } 
8 }