PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend8.C
blob21fd242f1836dd1679a5e849c808e0679b15ebb1
1 template <int N> struct ivector
3   template <int r, int c> friend void
4     mult_mv ();
5 };
7 template struct ivector<3>;
9 template <int r, int c> void
10 mult_mv ()
12   c;
15 void get_local_point_pos ()
17   mult_mv<7, 3> ();