[PATCH v2 2/3] RISC-V: setmem for RISCV with V extension
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template39.C
blob51eace366cb950388b9c968d346dd93fad47f259
1 // { dg-do assemble  }
2 // PRMS Id: 10283
4 template <class T> struct B {
5   static void (*p)();
6   static void f ();
7 };
9 template <class T>
10 void (*B<T>::p)() = &B<T>::f;
12 B<int> b;
14 template <int i> struct A {
15   static const int j = i;
16   int k[j];
19 A<1> a;
21 template <int i>
22 const int A<i>::j;