Revert "PR 117048: simplify-rtx: Simplify (X << C1) [+,^] (X >> C2) into ROTATE"
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / spec5.C
bloba34c2aee8db17d2d99f52b42e6160eee3ae86116
1 // { dg-do assemble  }
3 template <class T>
4 void f(T t1, T t2);             // { dg-message "note" }
6 template <>
7 void f(int i, int j);
9 template <class T>
10 void g(T t1, T t2) {}           // { dg-message "note" }
12 template void g(int i, int j);
14 void h()
16   f(3, 'c'); // { dg-error "" } no matching function
17   // { dg-message "(candidate|deduced conflicting types)" "candidate note" { target *-*-* } .-1 }
18   g(3, 'c'); // { dg-error "" } no matching function
19   // { dg-message "(candidate|deduced conflicting types)" "candidate note" { target *-*-* } .-1 }