OSDN Git Service

PR c++/56395
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / static5.C
1 // { dg-do compile }
2
3 // Origin: Mirek Fidler <cxl@ntllib.org>
4 //         Wolfgang Bangerth <bangerth@ticam.utexas.edu>
5
6 // PR c++/12932: ICE address of static function as template argument
7
8 struct Test {
9     static void fun();
10 };
11
12 template <void (*fun)()>
13 void foo () { (*fun)(); }
14
15
16 template
17 void foo<Test::fun> ();