1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* PR debug/113637 */ /* { dg-do compile { target bitint } } */ /* { dg-options "-g -std=c23" } */ #if __BITINT_MAXWIDTH__ >= 639 typedef _BitInt(639) B; #else typedef _BitInt(63) B; #endif void foo (B n) { extern void bar (int [][n]); }