blob: b28400a64d2fb6160054ae9903babe5c8e6102eb [file] [log] [blame]
// PR c++/26266
template<typename> struct A
{
static const int i = 1;
};
template<typename> struct B
{
static const int j = A<char>::i;
static const int k = int(j);
int x[k];
};
B<char> b;