rt_gccstream/gcc/testsuite/g++.dg/expr/cast8.C

12 lines
95 B
C

// PR c++/29886
struct A {
static int x[1];
};
void foo(int i)
{
if (int(A::x[i])) {}
}