ref1.C   [plain text]


// { dg-do assemble  }

int i;

template <void (&FN)()>
void g ()
{
  FN ();
}

void h ()
{
  i = 7;
}

template void g<h>();