blob: 9f1ce36f487ccbe587b2fcce9edc8e0e0a151285 [file] [log] [blame]
// PR c++/29886
struct A {
static int x[1];
};
void foo(int i)
{
if (int(A::x[i])) {}
}