PR middle-end/77674
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wunused-var-15.C
blob9782ccbd9a7c85cb9208c7c1395d946bfb9d19ac
1 // PR c++/45588
2 // { dg-do compile }
3 // { dg-options "-Wunused" }
5 void bar (unsigned char *);
7 template <int N>
8 struct S
10   static const int k = 6;
13 template <int N>
14 const int S<N>::k;
16 template <int N>
17 void
18 foo ()
20   const int i = S<N>::k;
21   unsigned char a[i];
22   bar (a);
25 void
26 baz ()
28   foo<0> ();