OSDN Git Service

PR c++/39055
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / local4.C
1 // PR c++/17413
2 // { dg-options -std=c++98 }
3
4 template <typename T> void foo() {} // { dg-message "note" }
5
6 int main () {
7   struct S {};
8   foo<S> (); // { dg-error "(match|template argument for|trying to instantiate)" } 
9   // { dg-message "candidate" "candidate note" { target *-*-* } 8 }
10 }