1// { dg-do assemble  }
2template <int I>
3void f(int j);
4
5void g()
6{
7  f<7, 12>(3); // { dg-error "" } no matching function.
8}
9