// { dg-do compile } // Origin: Mirek Fidler // Wolfgang Bangerth // PR c++/12932: ICE address of static function as template argument struct Test { static void fun(); }; template void foo () { (*fun)(); } template void foo ();