blob: 34f8a58aad8a7dafb99d863d8b55b7ab84faa5f6 [file] [log] [blame]
typedef int int32_t __attribute__((mode (__SI__)));
template <int32_t I>
struct A
{
int32_t ar[I][I][I][I][I][I][I][I][I][I]; // { dg-error "exceeds maximum object size" }
};
A<66000> a;