OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / static25.C
1 // PR c++/27819
2  
3 struct A
4 {
5   static const char i = 1;
6 };
7
8 template<int> struct B
9 {
10   static const int j = A::i;
11   int x[int(j)];
12 };
13
14 B<0> b;