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