blob: 7bffa12859868dc41e9da87ba749bbc75d14e681 [file] [log] [blame]
/* PR c/113315 */
/* { dg-do compile { target bitint } } */
/* { dg-options "-std=c23 -O2" } */
extern int a[5];
int
foo (void)
{
_BitInt(535) i = 1;
return a[i];
}