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