summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit41.C
blob: b5ca475462a5254b8550e3dcc2b100af43edab52 (plain)
1
2
3
4
5
6
7
8
template <int I>
void f(int i);

void g()
{
  int i;
  f<i>(7); // ERROR - template argument 1 is invalid.
}