nontype9.C   [plain text]


// { dg-do compile  }
// Contributed by: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
int i;

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

void h ()
{
  i = 7;
}

template struct g<h>;