Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / g++.dg / template / static5.C
blob05eaf8fbd551bd9e2e09b2ac4559dd469044c204
1 // { dg-do compile }
3 // Origin: Mirek Fidler <cxl@ntllib.org>
4 //         Wolfgang Bangerth <bangerth@ticam.utexas.edu>
6 // PR c++/12932: ICE address of static function as template argument
8 struct Test {
9     static void fun();
12 template <void (*fun)()>
13 void foo () { (*fun)(); }
16 template
17 void foo<Test::fun> ();